someone
Member since Dec 11, 2008
- Profile: /members/1665-someone.htm
- Comments: 1
Recent Blog Comments By someone
-
Ask Ben: Javascript String Replace Method
Posted on Apr 28, 2007 at 10:39 AM
there's no need to create a RegExp object inside replace function, as the latter supports regular expressions itself, e.g.: str.replace(/<br>/gi,"\n"); where gi obviously stends for global search + case insensitive. same applies for match(), search() and the like.... read more »