Hi all,
I need your help to make a reg exp.
This is my sentence
Bonjour le monde Aurevoir Hi The world Bye
I need to retrieve "le monde" and "The world".
Actually I'm using 2 patterns matching to get all the results
1st : (?s)Bonjour(.*)Aurevoir
2nd : (?s)Hi(.*)Bye
Is it possible to merge the 2 expressions in only 1?
Something like that : (?s)Bonjour(.*)Aurevoir|(?s)Hi(.*)Bye (This one is not correct).
Thanks in advance.
Regards