Reputation: 11389
What is the correct regular expression to Find a string that begins with "Bla", followed by any chars, followed by the string " = new " followed by anything, such as "Bla myNewBla = new Bla();"?
Find a string that begins with "Bla", followed by any chars, followed by the string " = new " followed by anything, such as "Bla myNewBla = new Bla();"
Upvotes: 0
Views: 104
Reputation: 72854
You can try the following:
Bla.* = new .*
Upvotes: 1