Showing posts with label regular expressions. Show all posts
Showing posts with label regular expressions. Show all posts

Wednesday, September 23, 2015

Demystifying RegEx with Practical Examples

Friday, November 22, 2013

Regular Expression explainer

Tuesday, October 30, 2012

Javascript trim function

Function trim (myString)     
{     
    return myString.replace(/^s+/g,'').replace(/s+$/g,'')     
}