Is Replace() broke?
BlitzMax Forums/BlitzMax Beginners Area/Is Replace() broke? You might be better off using the string 'replace' method rather than the old retro string 'replace' function. Check out language > strings in the Blitzmax help.
eg.
Local t:String="***** HELLO *****"
Print t.Replace( "*","!" ) 'replaces all "*" with "!"
eg.
Local t:String="***** HELLO *****"
Print t.Replace( "*","!" ) 'replaces all "*" with "!"
Thx for the tip Bill.