In delphi 7 when opening the search dialog box: CTRL + F and selecting the option: Regular Expressions would like to find anything starting with the word GPField and ending with IsNull
For example, I have the following code:
if GPField('TABELATAXAS').IsNull then
if GPField('TABELACARNE').IsNull then
I would like to search for something like:
GPField*IsNull
What would bring me the two lines of code above.
How could I do this?