Is there a way of replacing all occurences of one string with another 
without using regular expressions?

var strTest = "this is a test"

trace strTest.replace("t","s");

returns "shis is a test" I want "shis is a sess".

Paul

Reply via email to