指定した文字を指定の文字数だけ並べるには String 関数を使う。 もし2文字以上の文字列を指定した場合、先頭の1文字が使われる。 サンプルコード “A” を5個並べるサンプルを以下に示す。 WScript.Echo String(5, "A") ' → AAAAA 文字コード 65 が表す文字(つまり ...
I have a string (I think its a string) that is a number, I need to convert it into a real number. I have to do this to compare to another value to execute an If statement.<BR><BR>I have tried CInt and ...