PowerShell

演算子
-and(&&)
使用例

#数値if((30 -gt 20) -and (-50 -lt -4)){ echo "result: test 123"}#文字列if(("ark" -eq " ...

PowerShell

演算子
-eq(==)
-ne(1=)
-gt(>)
-ge(>=)
-lt(<)
-le(<=)
使用例

# -eq (==) if ("chan ...

PowerShell

書式
文字列 -like 表現式
文字列 -match 正規表現式
使用例

#ワイルドカードlikeif ("arkgame" -like "a*") { echo "study skill in ark ...

Ruby

書式
文字列1 << 文字列2
文字列1.concat(文字列2)
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-strA = 'study' <& ...

Ruby

説明
putsメソッド
引数がなければ改行のみを出力します。引数が配列の場合、その要素と改行を順に出力します。引数と改行を順番に出力します。

使用例

#!/usr/bin/ruby# -*- codi ...

Ruby

書式
for 変数名1,変数名2 in 配列名
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-cftArr = {:keyA => "AA01",:keyB => ...

Ruby

書式

for 変数名 in オブジェクト do   some codeend

使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-cft = for k in cft do puts ...

Ruby

書式
~/文字列(.*)/)
使用例

#!/usr/bin/rubycftA = "Cats are smarter than dogs";cftB = "Dogs also like meat";if ( cf ...

Java

説明
new クラス名(){}.関数名()
サンプルコード

package com.example.demo;public class StudytokumDemo { public static void ma ...

PowerShell

説明
`t タブ  `r キャリッジリターン  `n 改行 `” ダブルクォーテーション
使用例

#タブ$cftA = "A001`tB002"#改行$cftB ="C003`r`n`D004"#ダブ ...

Java

書式
parseShort(String str)
引数の値をshort型で返します。
実行環境 Java14
サンプルコード

package com.arkgame.study;public c ...

Java

書式
Short型変数.byteValue()
Short型変数.floatValue()
サンプルコード

package com.arkgame.study;public class ShortDemo ...

VBScript

書式
Class クラス名{
Dim メンバー変数1
Dim メンバー変数2
Public Property Let 関数名
}
サンプルコード

Option ExplicitDi ...

PowerShell

構文
$変数名 =”AA”
$変数名=’BB’
サンプルコード

#ダブルクォーテーション$cftA ="study skill in arkgame.com ...

Windows10

前提条件
Vmware Toolsのインストール済み

操作方法
1.管理(M)->「仮想マシン設定(S)」をクリックします。

2.「オプション」タブをクリックします。

3.「共 ...

PowerShell

1.スクリプトファイルを作成
PS C:\Users\ark> echo “echo “”study powershell test “”” > ...

Ruby

環境構築
>gem install json
1.json形式の文字列
ファイル名 test.json

{ "Username": "testuser001", "Addr": "home town ...

Ruby

1.rubyバージョンの確認
>ruby -v
ruby 2.6.6p146 (2020-03-31 revision 67876)
2.gemバージョンの確認
>gem -v
3. ...