strrep.gsf
名前
strrep() - 文字列を別の文字列で置換する
概要
ret = strrep( str, org, rep )
引数と戻り値
- str
- 文字列
- org
- 置換したい文字列
- rep
- 置き換えた後の文字列
- ret
- str中のorgをrepで置き換えた文字列
使用例
(1) 例の説明。
-
test.gs
rc = gsfallow( 'on' ) str = 'This is a pen.' say strrep( str, 'is', 'was' )
-
コンソール
ga-> test Thwas was a pen.
ソースコード
- strrep.gsf (必須)