REPLACE$

REPLACE$(<haystack$>, <needle$>, <replacement$>)

Type: function

文字列 <haystack$> の <needle$> を <replacement$> に置き換えて返します。
<needle$> と <replacement$> の文字列は異なっていても正常に処理されます。
例:

   PRINT REPLACE$("Hello world", "l", "p")
   PRINT REPLACE$("Some text", "me", "123")
