Regex Search and Replace in Eclipse: How do I fix dangling meta character 'x'?

Posted by Roger on Stack Overflow See other posts from Stack Overflow or by Roger
Published on 2010-06-15T15:36:50Z Indexed on 2010/06/15 15:42 UTC
Read the original article Hit count: 253

Filed under:
|
|

I am trying to replace function calls written when methods were nonstatic to an updated version were they are. For example: TABLE_foo(table1, ...rest is the same with table1.foo(...rest is the same

This is what I have come up with using my limited understanding of regex and this site. find:

TABLE_(*)\((*),

replace:

$2.$1(

The above yields a dangling meta character '*' error. Does anyone know what I am doing wrong?

© Stack Overflow or respective owner

Related posts about regex

Related posts about eclipse