Skip to content

Instantly share code, notes, and snippets.

@yano3nora
Created May 29, 2022 04:48
Show Gist options
  • Save yano3nora/f454fb001f1914222c2b8a29d384b57d to your computer and use it in GitHub Desktop.
Save yano3nora/f454fb001f1914222c2b8a29d384b57d to your computer and use it in GitHub Desktop.
[js: RegExp] #js
/**
* string[] から /(パターン1|パターン2)/g みたいなやつ
* 動的につくりたいよおお
*/
const words = ['パターン1', 'パターン2']
const regex = new RegExp(`(${words.join('|')})`, 'g')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment