Источник:
http://www.axaptapedia.com/StrReplace
==============
Summary: New page: ==StrReplace== ===Syntax=== str strReplace( str _str, str _fromStr , str _toStr) ===Description=== Replace all of those occurrence in the text string specified by _str of sub...
==StrReplace==
===Syntax===
str strReplace( str _str, str _fromStr , str _toStr)
===Description===
Replace all of those occurrence in the text string specified by _str of substring equal to _fromStr with the string specified in _toStr and return the new string. That is, starting first character subtring in _str equal to _fromStr will be replace with _toStr.
===Example===
strReplace("a.b.c.d", ".", " ")
//returns the text string "a b c d".
strReplace("?!?!?", "?!?", "*")
//returns the text string "*?".
===Note===
StrKeep is complementary to StrRem.
==See also==
* [[StrRem]]
* [[StrKeep]]
[[Category:String]]
[[Link title]]
Источник:
http://www.axaptapedia.com/StrReplace