documentation icon indicating copy to clipboard operation
documentation copied to clipboard

Documentation/help is missing for regex in the file name field

Open mikoladz opened this issue 2 years ago • 1 comments

Hello,

When I was trying to setup a new notification for a new file uploaded using the file name match I found that in most cases entering a valid regex did not work, i.e. every time an error was returned. Currently it is unclear what can be entered in the file name field. E.g.:

  • there is an example: "/^dummy-.+$/i" which works
  • none of these work: "/my/folder/.+", "/my/folder/.+" Please add some documentation or help with examples.

mikoladz avatar Dec 29 '23 14:12 mikoladz

The regex has to be enclosed with /. You are missing those, and you have to escape the directory separators, e.g. /\/my\/folder\/.+/

Moving the issue to documentation repo.

blizzz avatar Jan 12 '24 09:01 blizzz