I want to replace for example F(G(X,Y)); with H(X,Y); In RAD Studio IDE.
The regex I use is:
Find Expression: F\\(G\\
F\\(G\\
Use {} to group the expression rather than () and \1 in the replacement text:
Find Expression: F\(G\({.+}\)\); Replace Expression: H(\0)
F\(G\({.+}\)\)
H(\0)