Find occurrences with regular expression (Java engine)

ledowaisedo

New Member
I would like to use some regular expression to find occurrences. For e.g, users will enter:word1 code1 -10001 !nonewhich mean: search word1 AND code1 AND -10001 AND NOT noneThese criterion are used to build a regexp.I have such text lines:1 - "My usual word12 is including GCode10 -10001. End of record" // This should be true and return "world12 is including GCode10 -10001."2 - "This is an other line word12 is including GCode10 -10001 none End of record" // This should be false and return nothingI tried this:\[code\]^(?=.*?word1)(?=.*?code1)(?=.*?-10001)((?!none).)*$\[/code\]It works for line 1, but it return all the lineI also tried this:\[code\](\\w*word1\\w*).*(\\w*code1\\w*).*(\\w*-10001\\w*)(?!none)\[/code\]But it gave me only "word12", "GCode10", but it missed "-10001" and moreover, it match for the second line! It shouldn't.I'm not an expert in regexp...
 
Back
Top