
I got an error :
Code: Select all
Invalid file name specified!
^((?!_h).)*$
TRegExprW(comp): Urecognized Modifier (pos 7)

https://yadi.sk/i/eco-pCGbAY7iAw
This RegExp working fine in UltraEdit
TC 9.21a x86/x64
Moderators: Hacker, petermad, Stefan2, white
Code: Select all
Invalid file name specified!
^((?!_h).)*$
TRegExprW(comp): Urecognized Modifier (pos 7)
Lets see what RegEx experts or Christian say.Ovg wrote: 2018-10-31, 17:34 UTC I'm trying to search for files using regexp
https://yadi.sk/i/eco-pCGbAY7iAw
That's right, it's not supported by the RE-engine TC uses. For more info search the forum for 'lookaround'
Code: Select all
:\/\/(?!.*www\.google)\S{6}
TRegExpr by Andrey V. Sorokin is supportet: https://regex.sorokin.engineer/alexblade wrote:TRegExp engine by Andrey V. Sorokin [ http://regexpstudio.com/ also is no more supported ]
That's not quite true.ghisler(Author) wrote: 2021-03-16, 20:38 UTC The TRegExpr library does not support look ahead or look behind. It is no longer maintained.