GetStringLeft(string, int)

文字列の中からサブ文字列を取得する

string GetStringLeft(
    string sString,
    int nCount
);

Parameters

sString

ターゲットの文字列

nCount

サブ文字列の長さ


Description

sStringの左端からnCountの文字を含むサブ文字列を返す。エラーの際は空の文字列を返す。



Remarks

負の値のnCountは不正とみなされ、空の文字列が返されるだろう。


Version

1.22

Example

void main()
{
     // "Hello"と言う
    string sMessage = "Hello World!";
    SpeakString(GetStringLeft(sMessage, 5));
}

See Also

functions: GetStringRight | GetSubString
categories: String Functions


author: Kristian Markon, editor: Daniel Beckman, JP team: weed
Send comments on this topic.