Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to do a Regex for Visual Studio search that finds me all the calls to the methods of a certain class that don't use callback (the class is a proxy, and I want to find the synchronous calls).

I want to find this kind of calls:

jc.GetStuff (data1, data2, data3);

But not this:

jc.GetStuff (data1, data2, data3, GetStuffCallback);

So I'm trying with this:

~(<jc>..*<(>.*<Callback>.*<)>)<jc>..*<(>.*<)>

and, not knowing if I should escape those parenthesis:

~(<jc>..*<\(>.*<Callback>.*<\)>)<jc>..*<\(>.*<\)>

I can't figure why this isn't working... what am I missing? Thanks!

share|improve this question

1 Answer

I'm not sure what all of the angle brackets are in your expression, but how about something like this?

jc\..+\((?!.*Callback.*).*\);

 

jc                   literal string jc
\.                   full stop (escaped)
.*                   any character 1 or more times
\(                   opening bracket (escaped)
(?!.*Callback.*)     negative lookahead for callback
.*                   any character 0 or more times
\(                   closing bracket (escaped)
;                    literal string ;
share|improve this answer

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.