最新のWeb開発のチュートリアル
 

VBScriptのMid関数


<コンプリートVBScriptのリファレンス

Mid関数は、文字列から指定された数の文字を返します。

Tip:文字列の文字数を決定するために、Len関数を使用します。

構文

Mid(string,start[,length])

パラメーター 説明
string 必須。 文字が返され、そこから文字列式
start 必須。 開始位置を指定します。 文字列の文字数より大きいに設定されている場合、それは空の文字列を返します("")
length 任意。 復帰への文字数

例1

postion 1から始まる、1つの文字を返します:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,1,1))

%>

上記のコードの出力は次のようになります。

T
表示例»

例2

postion 1から始まり、15個の文字を返します:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,1,15))

%>

上記のコードの出力は次のようになります。

This is a beaut
表示例»

例3

postion 1から始まり、すべての文字を返します:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,1))

%>

上記のコードの出力は次のようになります。

This is a beautiful day!
表示例»

例4

postion 12で始まる、すべての文字を返します:

<%

txt="This is a beautiful day!"
response.write(Mid(txt,12))

%>

上記のコードの出力は次のようになります。

eautiful day!
表示例»

<コンプリートVBScriptのリファレンス