「Vle-string-replace」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{AutoLISP}} ; 構文 : (vle-string-replace ''newStr'' ''oldStr'' ''inString'') ; 機能 : 文字列 inStr 内の oldStr を newStr に置き換える。 : newStr'…」)
(相違点なし)

2022年6月18日 (土) 10:22時点における版

構文
(vle-string-replace newStr oldStr inString)


機能
文字列 inStr 内の oldStr を newStr に置き換える。
newStr' と 'oldStr' は任意の長さを持つことができ、同じ長さである必要はない。
  • vla-string-replace と同じ。


引数
  • newStr :
  • oldStr :
  • inString :


戻り値
すべての oldStr を newStrc で置き換えた新しい文字列。


サンプル

<syntaxhighlight lang="lisp" line> (vle-string-replace "." "," "12,345,678") "12.345.678"

</syntaxhighlight>



関連事項