Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In eclipse, is it possible to use the matched search string as part of the replace string when performing a regular expression search and replace?

Basically, I want to replace all occurrences of

variableName.someMethod()

with:

((TypeName)variableName.someMethod())

Where variableName can be any variable name at all.

In sed I could use something like:

s/[a-zA-Z]+\.someMethod\(\)/((TypeName)&)/g

That is, & represents the matched search string. Is there something similar in Eclipse?

Thanks!

share|improve this question

2 Answers

up vote 81 down vote accepted

Yes, "( )" captures a group. you can use it again with $i where i is the i'th capture group.

so:

search: (\w+\.someMethod\(\))
replace: ((TypeName)$1)

hint: CTRL + space in the textboxes gives you all kinds of suggestions for regular expression writing. (I'm afraid the down key, to go down the list of suggestions, does delete your input in the textbox. Irritating little bug)

share|improve this answer
it no works for moi :( – kellogs Feb 2 '12 at 21:01
huzzzzzzzah! +1 – Steven Francolla Mar 23 '12 at 18:09
2  
Great answer, especially the hint is an extra point worth :) – Martin Jun 28 '12 at 13:38

At least at STS (SpringSource Tool Suite) groups are numbered starting form 0, so replace string will be

replace: ((TypeName)$0)
share|improve this answer
4  
That's not true afaik. The $0 represents the whole original search term. In this case I guess that would work coincidentally though. – Walter Heck Nov 28 '11 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.