Exclude regular expression matching FolderNamePath

English support forum

Moderators: white, Hacker, petermad, Stefan2

Post Reply
User avatar
makinero
Senior Member
Senior Member
Posts: 268
Joined: 2013-10-26, 10:05 UTC

Exclude regular expression matching FolderNamePath

Post by *makinero »

\s[100-770].+,.+[100-480]
What REGEX FOR THIS RANGE

Code: Select all

whitespace"760","493"
Last edited by makinero on 2017-03-27, 04:11 UTC, edited 3 times in total.
User avatar
Stefan2
Power Member
Power Member
Posts: 4157
Joined: 2007-09-13, 22:20 UTC
Location: Europa

Use a title that describes the content of your post.

Post by *Stefan2 »

2makinero
Please "Use a title that describes the content of your post. "
http://ghisler.ch/board/viewtopic.php?t=2


For Example: Need RegEx to match whitespace"760","493"



Thank you for your understanding.



 
User avatar
Stefan2
Power Member
Power Member
Posts: 4157
Joined: 2007-09-13, 22:20 UTC
Location: Europa

Post by *Stefan2 »

Thanks, but still not near a descriptive subject line.

Please "Use a title that describes the content of your post. "
so others can find and participate to an issue they are interested in.


"ADVANCED REGEX" or "regex patterns" is no clear subject what this topic is about.


You are a long enough member and are able to write English sentences very well, so that should not be a big issue for you.





 
User avatar
makinero
Senior Member
Senior Member
Posts: 268
Joined: 2013-10-26, 10:05 UTC

Post by *makinero »

General issues to match regular expressions, not just those given example
User avatar
Stefan2
Power Member
Power Member
Posts: 4157
Joined: 2007-09-13, 22:20 UTC
Location: Europa

Post by *Stefan2 »

makinero wrote:General issues to match regular expressions, not just those given example
Ahh, I see.

For that please take a look e.g. here >> http://www.regular-expressions.info/





 
User avatar
makinero
Senior Member
Senior Member
Posts: 268
Joined: 2013-10-26, 10:05 UTC

Post by *makinero »

So please prohibit all users of such issues and send them to this site, since regular expressions are simple!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
User avatar
makinero
Senior Member
Senior Member
Posts: 268
Joined: 2013-10-26, 10:05 UTC

Regex to exclude multinames

Post by *makinero »

Regex to exclude multinames

[^name1|^name2|^name3]
Please correct
User avatar
nsp
Power Member
Power Member
Posts: 1805
Joined: 2005-12-04, 08:39 UTC
Location: Lyon (FRANCE)
Contact:

Re: Regex to exclude multinames

Post by *nsp »

makinero wrote:Regex to exclude multinames

[^name1|^name2|^name3]
Please correct
Regex is so simple :) but not in this case.....
In some software you can add a negative switch to reverse the search, but not know if it is possible in TC.
Anyway, you can search for :
*.* | *name1* *name2* *name3*

You can also use the plugin tc.name !contain name1 AND tc.name !contain name2 AND tc.name !contain name3
.....
it is also possible using everything
User avatar
makinero
Senior Member
Senior Member
Posts: 268
Joined: 2013-10-26, 10:05 UTC

Post by *makinero »

Code: Select all

ERROR:
System.ArgumentException: analizowanie "*.* | *name1* *name2* *name3* " - Nic nie występuje przed kwantyfikatorem {x,y}.

Translate:

Code: Select all

parsing Quantifier {x,y} following nothing

Path:

Mini-example:
D:\ZK Car\54321_0\123add-45.jpg
E:\ZK Truck\7654_000\6543-98gx.jpg

Ignore(Exclude) Car and Truck
Post Reply