There was a need for a large piece of code to make a massive replacement. I use the regular Visual Studio 2017 tool and regular expressions to search. I mean that the syntax of expressions in the search string corresponds to the syntax of regular expressions in C #. There is the next line
get_Label (). get_UserLocalizedLabel (). get_Label ();
In the search set the expression get_(\w*)\(\)
I get the search result:
get_Label().get_UserLocalizedLabel().get_Label();
And here we need this result:
get_label().get_UserLocalizedLabel().get_Label();
That is, you must exclude the word between get_ and () . I tried get_(?!\w*)\(\) , but did not succeed.
_get_and()with something (for example, to getGetLabel.GetUserLocalizedLabel, or completely remove them, or something else? - Regent