Hello forum,
I have a problem with a custom filesystem discovery RegEx.
Filesystems are like this:
1)
/application/something/else
2)
/application/something/unwanted/else
My regex so far is ^(application.+) which matches 1+2. But I do NOT want 2 to match.
So far I could not find a regex that matches 1 but does NOT match 2.
Does someone have a hint on a fitting regex?
Thanks!
I have a problem with a custom filesystem discovery RegEx.
Filesystems are like this:
1)
/application/something/else
2)
/application/something/unwanted/else
My regex so far is ^(application.+) which matches 1+2. But I do NOT want 2 to match.
So far I could not find a regex that matches 1 but does NOT match 2.
Does someone have a hint on a fitting regex?
Thanks!

Comment