最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

regex - How to concatenate regular expressions in JavaScript? - Stack Overflow

programmeradmin2浏览0评论

This is not what I'm asking for:

concatenate multiple regexes into one regex

Is there a way to append a regex into another one (in JavaScript language) ?

The reason for doing so is to simplify code maintenance (e.g. if the included string is long or easier to maintain by a non-programmer).

In Python, for example, i'd write something like:

regstr1 = 'dogs|cats|mice'
regstr_container = '^animal: (cows|sheep|%s|zebra)$' % regstr1
repile(regstr_container)

however, in JavaScript, the regular expression is not a string.

re = /^animal: (rami|shmulik|dudu)$/;

or am I missing something?

This is not what I'm asking for:

concatenate multiple regexes into one regex

Is there a way to append a regex into another one (in JavaScript language) ?

The reason for doing so is to simplify code maintenance (e.g. if the included string is long or easier to maintain by a non-programmer).

In Python, for example, i'd write something like:

regstr1 = 'dogs|cats|mice'
regstr_container = '^animal: (cows|sheep|%s|zebra)$' % regstr1
re.pile(regstr_container)

however, in JavaScript, the regular expression is not a string.

re = /^animal: (rami|shmulik|dudu)$/;

or am I missing something?

Share Improve this question edited Oct 18, 2020 at 20:35 Alex 1,5801 gold badge15 silver badges27 bronze badges asked Aug 23, 2009 at 15:41 Berry TsakalaBerry Tsakala 16.7k13 gold badges64 silver badges90 bronze badges 1
  • i've closed this question; but didn't delete it so others that use the keywords i've used will reach this link: stackoverflow./questions/185510/… – Berry Tsakala Commented Aug 23, 2009 at 15:54
Add a ment  | 

2 Answers 2

Reset to default 6

You don't have to use the literal notation. You could instead create a new RegExp object.

var myRegex = new RegExp("^animal: (rami|shmulik|dudu)$");
var regstr1 = 'dogs|cats|mice',
regstr_container = '^animal: (cows|sheep|'+ regstr1 +'|zebra)$',
regex = RegExp(regstr_container);
发布评论

评论列表(0)

  1. 暂无评论