GetStringUpperCase(string)
文字列を大文字に変換する。
string GetStringUpperCase( string sString );
Parameters
sString
大文字に変換するターゲットの文字列
Description
小文字に変換されたsStringを返す。エラー時は空の文字列を返す。
Version
1.22
Example
void main() { // HELLO WORLD!"と言う string sMessage = "hello world!"; SpeakString(GetStringUpperCase(sMessage)); }
See Also
functions: | GetStringLowerCase |
categories: | String Functions |
author: Kristian Markon, editor: Daniel Beckman, JP Team: weed
Send comments on this topic.