Regular Expressions

Post Reply
dreamer29
Posts: 75
Joined: 22 Mar 2023, 00:53

Regular Expressions

Post by dreamer29 » 30 Apr 2023, 16:01

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

Maksym
Site Admin
Posts: 2077
Joined: 02 Mar 2009, 17:02

Re: Regular Expressions

Post by Maksym » 30 Apr 2023, 18:34

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.

dreamer29
Posts: 75
Joined: 22 Mar 2023, 00:53

Re: Regular Expressions

Post by dreamer29 » 30 Apr 2023, 19:00

thank you so much

dreamer29
Posts: 75
Joined: 22 Mar 2023, 00:53

Re: Regular Expressions

Post by dreamer29 » 30 Apr 2023, 19:12

do i need more PCRE Regular Expressions or javascript Regular Expressions

Maksym
Site Admin
Posts: 2077
Joined: 02 Mar 2009, 17:02

Re: Regular Expressions

Post by Maksym » 30 Apr 2023, 20:31

Extreme Picture Finder uses PCRE Regular Expressions.

dreamer29
Posts: 75
Joined: 22 Mar 2023, 00:53

Re: Regular Expressions

Post by dreamer29 » 30 Apr 2023, 20:42

ok thanks for your help

Post Reply