Regex That Work

Jan 13, 2026
16
1
3
Hi.

Does anyone have some examples of regex patterns that work in the gui. Trying to sync vm/300 to vm/399. Both source and destination are in namespaces. I'm not including the source namespace in the job as it searches all namespaces which suits what I'm doing. In my testing I just want to grab the first 2 vm 301 and 301...

Tried variations including...
vm/3\d{00,01}/g
vm/3\d{00,01}
^vm/3\d{00,01}
^vm/3\d{00,01}$

No VMs are found?
 
Last edited:
I would try like this:
^ start of string
vm/3 literal prefix
\d{2} exactly 2 digits
$ end of string

Code:
^vm/3\d{2}$