calicoder
Member since Dec 11, 2008
- Profile: /members/1688-calicoder.htm
- Comments: 2
Recent Blog Comments By calicoder
-
Ask Ben: Javascript String Replace Method
Posted on Jul 25, 2008 at 8:32 PM
previous post should be stringValue.replaceAll("&", "& amp;"); ** no space **... read more »
-
Ask Ben: Javascript String Replace Method
Posted on Jul 25, 2008 at 8:29 PM
Your replaceAll code is *** NOT SAFE *** You should be using javascript's regular expression support for this instead of a loop: stringValue.replace(/something/g, "something else"); Your solution causes infinite loop. Example: stringValue.replaceAll("&", "&"); In this scenario you'd like t... read more »