VBScript lcfirst 関数

文字列の最初の文字を小文字にする


Function lcfirst(byVal str)

    Dim tmp
    tmp = left(str,1)
    tmp = Lcase(tmp)
    lcfirst = tmp & Mid(str,2)

End Function

引数

str = string 入力文字列。

戻り値

変換後の文字列を返します。

処理

・str の最初の文字がアルファベットであれば、 それを小文字にします。

その他の PHP strings 関数