Skip to content

Instantly share code, notes, and snippets.

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 takahashi-h5/5a506a037eccc14e6c76dd06eb74c4f9 to your computer and use it in GitHub Desktop.
Save takahashi-h5/5a506a037eccc14e6c76dd06eb74c4f9 to your computer and use it in GitHub Desktop.
const str = "/var/db/hoge/test1/Android.json";
let regexp = /\/var\/db\/hoge\/(.*?)\/(iPhone|Android)\.json/g;
console.log(regexp.test(str)) // true
console.log(regexp.exec(str)) // nullになってしまう
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment