#1 : 31/08-23 00:25 Keith Jones
Posts: 2
|
Hi,
...and a quick question (which may have been asked already oops!) :-) Which regex variant does Advanced Renamer use? I've noticed that most of the MSDN documented stuff (https://msdn.microsoft.com/en-us/library/az24scf c%28v=vs.110%29.aspx) works so there's a lot of power available that isn't directly documented. It would be cool to know where to look for a full list. There's some pretty cool hidden features like; word boundaries, punctuation and unicode support, that are making my regex expressions much more useful. :-) Regards, Keith PPS: Some documentation on the Javascript api would be cool to have too. Somedays, regex just ain't enough :-) |
#2 : 31/08-23 15:57 Kim Jensen
Administrator
Posts: 929 |
Reply to #1:
When using regular expressions, most stuff works in all implementation, but some of the more advanced features might only be available when certain libraries and sometimes only in a certain context. Advanced Renamer uses the PCRE library for regular expressions. A guide can be found here: https://www.advancedrenamer.com/user_guide/regul ar_expresions |