Line1
Hello world, This is sample text
Line2
Hello, world What's going On
We want to search string that contains:
world & going
words VISUAL STUDIO Example:
STEP 1: Press CTRL + F (Open find dialog)
STEP 2: Press ALT + R (Use Regular expression)
STEP 3: Write 
world(.*)going
in the search field
The search result will be:
Hello, 
world
What's
going
On
because it contains the same time words "world" and "going"
by Luka Tatarishvili
2 years ago
0
Pro tip: use ```triple backticks around text``` to write in code fences