1. ホーム
  2. スクリプト・コラム
  3. 腹筋

vbs 文字列取得 (文字列の取り込み)

2022-01-08 05:18:57

コード例

x = "What kind of website is Script House" 
y = right(x, len(x)-1) 'Get all characters after the first character character
msgbox y

コード内で使用されている関数の紹介

left 関数は、文字列の左側の文字を取得します。

x = left(x, 1) '最初の文字を取得する 

len 文字列の長さを取得する

len(x) 

split 関数は、文字列を分割する関数です。

x = "1,2,3"
split(x, ',')

その他の使い方はこちらの記事で紹介しています。 https://www.jb51.net/article/4586.htm