Skip to content

Instantly share code, notes, and snippets.

@lovitt
Created August 27, 2014 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovitt/abec108104722e9695b6 to your computer and use it in GitHub Desktop.
Save lovitt/abec108104722e9695b6 to your computer and use it in GitHub Desktop.
2.0.0-p247 :002 > /^(.+)(\\|\/)(.+)\.(.+)$/.match("C:\file\path\to\file.aa")
=> nil
2.0.0-p247 :003 > /^(.+)(\\|\/)(.+)\.(.+)$/.match('C:\file\path\to\file.aa')
=> #<MatchData "C:\\file\\path\\to\\file.aa" 1:"C:\\file\\path\\to" 2:"\\" 3:"file" 4:"aa">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment