With RegEx a ^ means start of string and a | means OR, so you probably want something like:
^A-|^C-
With RegEx a ^ means start of string and a | means OR, so you probably want something like:
^A-|^C-
Or you could use:
^^AC]-
which means, start of the string is either an A or a C then a -
Thanks!
Neither of those worked (nothing passed through). I tried those (or something similar, I don't remember, I tried probably 50 different iterations before posting). So there must be something else going on with my workbench (or my source DWG). But I at least know I was on the right track now, so I can go back and see what else it going on in that workbench, or at least break it down step by step.
I appreciate the quick response.
Thanks!
Neither of those worked (nothing passed through). I tried those (or something similar, I don't remember, I tried probably 50 different iterations before posting). So there must be something else going on with my workbench (or my source DWG). But I at least know I was on the right track now, so I can go back and see what else it going on in that workbench, or at least break it down step by step.
I appreciate the quick response.
I think I have it:
^^AC]-\\S+
This means, Starts with A or C, followed by -, followed by any number of other characters.
I think I have it:
^^AC]-\\S+
This means, Starts with A or C, followed by -, followed by any number of other characters.
Thanks so much for the additional research on this. This did work. I ended up just doing a tester to remove that one layer, but it takes so long to go through the 60K features on that one layer. I tested and it reads this way soooo much faster, so I really appreciate that, I don't think I would have gotten that one.
I think I have it:
^^AC]-\\S+
This means, Starts with A or C, followed by -, followed by any number of other characters.
You are welcome, glad it works. The trick was that the RegEx needs to match the entire layer name not just the first few characters.