Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

GetFile not having string in the name

avatar
New Member

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
New Member

Thanks Pierre, it works stright away.