Re: Some simple regular expression example
Posted: Tue Sep 04, 2012 1:01 pm
Hi Perkin,
try it and you will get lookbehind assertion is not fixed length error. The assertion must match a fixed length query. Using + and * will never work. You can understand this if you realize that this would need to scan all text previous to this expression. That is impossible and upon this the assertion must be fixed length.
Best
Kukulkan
try it and you will get lookbehind assertion is not fixed length error. The assertion must match a fixed length query. Using + and * will never work. You can understand this if you realize that this would need to scan all text previous to this expression. That is impossible and upon this the assertion must be fixed length.
Best
Kukulkan