Mainly I want to search for all lines that contain XXX and YYY on the same line in Eclipse.
What would be the correct search expression for that?
|
Mainly I want to search for all lines that contain XXX and YYY on the same line in Eclipse. What would be the correct search expression for that? |
|||
|
|
|
This regex should comply with your request:
Used under File Search, checking Regular expression. |
|||
|
|
|
Use XXX*YYY in file search option. This will mean that any characters can come in between XXX and YYY. |
|||
|
|