strtrim.gsf
名前
strtrim() - 文字列の空白を切り詰める
概要
ret = strtrim( str, opt )
引数と戻り値
- fn
- ファイル番号
- str
- 文字列。
- opt
- "l"(先頭のみ)、"r"(末尾のみ)又は ""(先頭と末尾)。省略時 opt=""。
- ret
- 結果の文字列。
使用例
(1) 例の説明。
-
test.gs
rc = gsfallow( 'on' ) str = ' This is a pen. ' say strtrim( str )
-
コンソール
ga-> test This is a pen.
ソースコード
- strtrim.gsf (必須)