J-- smallintegerのNumToChar
E-- ASCII character of smallinteger
Examples
----------
97のNumToChar
ASCII character of 97
----------
101のNumToChar
ASCII character of 101
--結果:"a"
--result : "a"
--結果:"e"
--result : "e"
J-- stringのCharToNum
E-- ASCII number of string
注)2バイト文字の場合は、1バイト目のASCII番号のみ返す。Examples
----------
"a"のCharToNum
ASCII number of "a"
----------
"e"のCharToNum
ASCII number of "e"
--結果:7
--result : 97
--結果:101
--result : 101
J-- containerStringのなかのcontainedStringのあるオフセット
E-- offset of containerString in containedString
注)containerStringの中にcontainedStringが存在しない場合、0を返す。大文字・小文字は区別する。Examples
----------
"It's raining."のなかの"rain"のあるオフセット
----------
"apple"のある"apple,orange,grape"の中のオフセット
offset of "apple" in "apple,orange,grape"
----------
"orange"のある"apple,orange,grape"のなかのオフセット
offset of "orange" in "apple,orange,grape"
----------
"banana"のある"apple,orange,grape"のオフセット
offset of "banana" in "apple,orange,grape"
----------
"Apple"のある"apple,orange,grape"のなかのオフセット
offset of "Apple" in "apple,orange,grape"
or
offset of "rain" in "It's raining."
--結果:1
--result : 1
--結果:7
--result : 7
--結果:0
--result : 0
--結果:0 (大文字・小文字を区別するため)
--result : 0, due to case sensitivity