Hi, Experts.
I'd like to use 'FIND' and 'REGEX' for seaching certain records in an internal table.
The Search condition is this. 'NN-'. Starts with 'N' and then the string has '-N'.
I used 'FIND' like this. 'IFND regex 'N*\Q-N\E' in dobj.
But, I couldn't get a result that I want. This Returns some garbages that it didn't start with 'N' and include '-N'.
What should I use REGEX to solve this Problem.
The following string is example.
'New-Notepad'.
Thanks.