प्रयत्न:
/(?!.*bar)(?=.*foo)^(\w+)$/
टेस्ट:
blahfooblah # pass
blahfooblahbarfail # fail
somethingfoo # pass
shouldbarfooshouldfail # fail
barfoofail # fail
नियमित अभिव्यक्ति की व्याख्या
NODE EXPLANATION
--------------------------------------------------------------------------------
(?! look ahead to see if there is not:
--------------------------------------------------------------------------------
.* any character except \n (0 or more times
(matching the most amount possible))
--------------------------------------------------------------------------------
bar 'bar'
--------------------------------------------------------------------------------
) end of look-ahead
--------------------------------------------------------------------------------
(?= look ahead to see if there is:
--------------------------------------------------------------------------------
.* any character except \n (0 or more times
(matching the most amount possible))
--------------------------------------------------------------------------------
foo 'foo'
--------------------------------------------------------------------------------
) end of look-ahead
--------------------------------------------------------------------------------
^ the beginning of the string
--------------------------------------------------------------------------------
( group and capture to \1:
--------------------------------------------------------------------------------
\w+ word characters (a-z, A-Z, 0-9, _) (1 or
more times (matching the most amount
possible))
--------------------------------------------------------------------------------
) end of \1
--------------------------------------------------------------------------------
$ before an optional \n, and the end of the
string
अन्य रेगेक्स
यदि आप केवल bar
इसके बाद सीधे बाहर करना चाहते हैं foo
, तो आप उपयोग कर सकते हैं
/(?!.*foobar)(?=.*foo)^(\w+)$/
संपादित करें
आपने इसे विशिष्ट बनाने के लिए अपने प्रश्न का अपडेट दिया है।
/(?=.*foo(?!bar))^(\w+)$/
नए परीक्षण
fooshouldbarpass # pass
butnotfoobarfail # fail
fooshouldpassevenwithfoobar # pass
nofuuhere # fail
नई व्याख्या
(?=.*foo(?!bar))
सुनिश्चित किया foo
जाता है, लेकिन इसका पालन नहीं किया जाता हैbar