IT

サンプルコード

Sub examplefunc() Dim tt As Integer tt = 37 Select Case tt Case 10 To 30 Debug.Print "10~30" Case 40 To 50 ...

VB.net

サンプルコード

Sub example() Dim tt As Integer tt = 56 Select Case tt Case Is > 100 Debug.Print "100より大きい" Case Is = 6 ...

PHP

サンプルコード
$tt = 0;

var_dump((float)$tt === 0.0);
var_dump((float)$tt === 0);
var_dump((float)$tt == 0 ...

VB.net

サンプルコード

Option ExplicitSub example() Dim t As Integer t = 0 Do While t < 10 t = t + 2 Loop MsgBox t End Sub

& ...

Swift

1.偶数の取得
println(.filter({(n:Int) -> Bool in return n % 2 == 0}).count)

2.文字列の配列
println(.filter { $0 ...

Tomcat

操作方法
1.web.xmlを開く
Tomcatのインストールディレクトリ\conf\web.xml
例 /usr/local/tomcat/webapps/sample/WEB-INF/web.xml ...

Software

ファイル conf/server.xml
サンプルコード
<Host name=”localhost” appBase=”webapps”
unpackWA ...

Windows10

現象:slackが自動起動します。
対策
1.「タスクマネージャー」をクリックします。
2.「スタートアップ」をクリックします。
3.slackを選択し、「無効にする」ボタンをクリックします。 ...

Oracle

書式
NVL2(文字列, 変換文字列1, 変換文字列2)
文字列がnullの場合、変換文字列2を返す、nullでなかれば、変換列1を返す

例1
select
nvl2( null, R ...

Linux

1.日時を指定する
書式  touch -d 日付 filename
$ touch -d “2020-06-08 10:54” test.html

2.ファイルを新規作成しない ...

Swift

サンプルコード
let tt = DateFormatter()
tt.dateFormat = DateFormatter.dateFormat(fromTemplate: “EEE”, op ...

Swift

サンプルコード
let fmt = DateFormatter()
fmt.dateFormat = DateFormatter.dateFormat(fromTemplate: “ydMMM” ...

VB.net

サンプルコード

Module ModuleTest Sub Main() Dim city As New Dictionary(Of String, String) city.Add("tokyo", "東京") city.Ad ...

VB.net

サンプルコード

Module ModuleTest Sub Main() Dim kd As New HashSet(Of String) kd.Add("22") kd.Add("33") kd.Clear() Console ...

VB.net

サンプルコード

Module ModuleTest Sub Main() Dim cft As New HashSet(Of String) cft.Add("11") cft.Add("22") cft.Add("33") c ...

Linux

1.ポート番号の削除
# firewall-cmd –remove-port=8080/tcp –zone=public
# firewall-cmd –remove-port=10 ...

Swift

1.文字列置換
let cft = “123testData”
cft.replacingOccurrences(of: “ta”, with: “ark&# ...

Swift

サンプルコード
let arr =
let avg= arr.reduce(0) { $0 + $1 }
print(avg)