Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

GetFile not having string in the name

avatar

Hello,

I'm struggling for a while with regex to get files from directory where filename is not beginning with 'S_' and or do not contain '$". Could someone help me please.

1 ACCEPTED SOLUTION

avatar

Hi @Darek Krysmann,

Could you try something like:

^(?!S_)((?!\$).)*

View solution in original post

2 REPLIES 2

avatar

Hi @Darek Krysmann,

Could you try something like:

^(?!S_)((?!\$).)*

avatar

Thanks Pierre, it works stright away.