replace.bmx 147 B

12345678
  1. SuperStrict
  2. Local str:String = "This is a test of the Replace command."
  3. Print "Original: "+str
  4. str = Replace(str,"e","*")
  5. Print "Altered: "+str