Page 1 of 1

Regular Expressions

Posted: 30 Apr 2023, 16:01
by dreamer29
i want learn the language you use like in

/threads/[^/]+/page-\d+$

[^/] this or \d+
have you a guide a site for me where i can learn it

Re: Regular Expressions

Posted: 30 Apr 2023, 18:34
by Maksym
Those are PCRE Regular Expressions. There is a lot of information about them in the Internet. For example:

https://regexone.com/
https://www.regular-expressions.info/

When I work I use

https://regex101.com/

to test my Regular Expressions.

Also there is a big article in the documentation accompanying Extreme Picture Finder about Custom Parsers. Just click [ F1 ] key on your keyboard when you are in the project properties window, [ Custom Parsers ] section.

Re: Regular Expressions

Posted: 30 Apr 2023, 19:00
by dreamer29
thank you so much

Re: Regular Expressions

Posted: 30 Apr 2023, 19:12
by dreamer29
do i need more PCRE Regular Expressions or javascript Regular Expressions

Re: Regular Expressions

Posted: 30 Apr 2023, 20:31
by Maksym
Extreme Picture Finder uses PCRE Regular Expressions.

Re: Regular Expressions

Posted: 30 Apr 2023, 20:42
by dreamer29
ok thanks for your help