- Is there a way to REGEX this information.
- My Birthday is: Thu Jan 12 23:59:59 GMT 2012.
- (?<=My Birthday is: ).+?(?=.)
- Thu Jan 12 23:59:59 GMT 2012
- Thu Jan 12 2012
- ^My Birthday is: (w{3} w{3} dd) dd:dd:dd w{3}( d{4}).$
- text.replace(/(w{3} w{3} dd) dd:dd:dd w{3}( d{4}).$/, '$1$2')