Leonardo
Leonardo

Reputation: 11389

eclipse regular expression search

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();"?

Upvotes: 0

Views: 104

Answers (1)

M A
M A

Reputation: 72854

You can try the following:

Bla.* = new .*

Upvotes: 1

Related Questions