Here’s how you can concatenate two regular expressions in JavaScript

To concatenate a regular expression in JavaScript, you can use a combination of the +  operator and the RegExp()  class as shown below. You need to combine both the RegExp source  (the string representation of the RegExp) and flags  (options for the RegExp).

#javascript #regexp

How to Concatenate Two Regular Expression in JavaScript
12.20 GEEK