Hi,
I have a problem in Regular Expression.
File 1 is:
ABCgg003D
if I want to search with any text start with BC and the end is 003 in File 1. I use BC*003 in find function. That work fine. Found 1 result.
File 2 is:
ABCgg002D
if i want text start with BC but not end with 003 in File 2. I have try BC*~^{003^}. I suppose 1 will be found. But the result is 0.
What Regular Expression should i use?
THX:)
I have a problem in Regular Expression.
File 1 is:
ABCgg003D
if I want to search with any text start with BC and the end is 003 in File 1. I use BC*003 in find function. That work fine. Found 1 result.
File 2 is:
ABCgg002D
if i want text start with BC but not end with 003 in File 2. I have try BC*~^{003^}. I suppose 1 will be found. But the result is 0.
What Regular Expression should i use?
THX:)