简体   繁体   中英

regex for string starts with X and contains Y

I am trying to write a function that builds a regular expression that can test whether a string starts with a string and contains another string.

function buildRegExp(startsWith,contains){
    return new RegExp( ????? )
}

for example:

buildRegExp('abc','fg').test('abcdefg')

The above expression should evaluate to true, since the string 'abcdefg' starts with 'abc' and contains 'fg'.

The 'startsWith', and the 'contains' strings may overlap eachother, so the regular expression cannot simply search for the 'startsWith' string, then search for 'contains' string

the following should also evaluate to true:

buildRegExp('abc','bcd').test('abcdefg')

I cannot use simple string functions. It needs to be a regular expression because I am passing this regular expression to a MongoDB query.

A pattern like this would handle cases where the startsWith / contains substrings overlap in the matched string:

/(?=.*bcd)^abc/

ie

return new RegExp("(?=.*" + contains + ")^" + startsWith);

Try this regexp

(^X).*Y

Eg in javascript

/(^ab).*bc/.test('abc') => false

/(^ab).*bc/.test('abcbc') => true

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM