vote up 2 vote down star

I refactor my code and I am looking for a solution to grep my source files for something like

if ( user && user.name && user.name.length() < 128 ) ...

in order to replace it later with ruby's andand or groovy's ?. operator (safe navigation operator).

flag
Are you looking for the regular expression to do this? – Craig Wilson Dec 11 '08 at 13:28
Yes, if this is possible it would be nice. – Mark Raddatz Dec 11 '08 at 14:19
elvis has left the building... – Steven A. Lowe Dec 11 '08 at 17:12

2 Answers

vote up 2 vote down

Here's something to get you started, I wonder if this can be generalized more without having to generate the regexp programatically

line = "user && user.name && user.name.length()"
p line.match(/(?:(\w*)(?:\s\&\&\s(\1\.(\w*)))(?:\s\&\&\s(\2\.(\w*))))/).to_a.
  reject {|m| m.match(/\./)}.join('.andand.')

=> "user.andand.name.andand.length"
link|flag
vote up 0 vote down

IntelliJ idea has a "structural search & replace" that will let you do this. This understands the semantics of the language so you can do all sorts of interesting replace operations.

http://www.jetbrains.com/idea/documentation/ssr.html

link|flag

Your Answer

Get an OpenID
or

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