InsertString(string, string, int)

この関数は、宛先の文字列のnPositionで示された場所に文字列を挿入する

string InsertString(
    string sDestination,
    string sString,
    int nPosition
);

Parameters

sDestination

挿入される文字列

sString

挿入する文字列

nPosition

挿入するインデックス位置


Description

この間数は文字列を別の文字列の中に挿入する



Remarks

1.26より前のバージョンでは、この間数は挿入する代わりに上書きする。


Version

1.26

Example

string s1 = “Bacon and spam”;
string s2 = “, ham ”;
string s3 = InsertString(s1, s2, 6);
//s3 = "Bacon, ham and spam"

See Also

categories: String Functions


 author: Michael Nork, editor: Charles Feduke, additional contributor(s): Iceberg, JP Team: weed
 Send comments on this topic.