Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 27th, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Is there a way to REGEX this information.
  2. My Birthday is: Thu Jan 12 23:59:59 GMT 2012.
  3.        
  4. (?<=My Birthday is: ).+?(?=.)
  5.        
  6. Thu Jan 12 23:59:59 GMT 2012
  7.        
  8. Thu Jan 12 2012
  9.        
  10. ^My Birthday is: (w{3} w{3} dd) dd:dd:dd w{3}( d{4}).$
  11.        
  12. text.replace(/(w{3} w{3} dd) dd:dd:dd w{3}( d{4}).$/, '$1$2')