I'm processing a bunch of tables using this program, but I need to ignore ones that start with the label "tbd_". So far I have something like [^tbd_] but that simply not match those characters.
feedback
|
|
You could use a negative look-ahead assertion:
Or a negative look-behind assertion:
Or just plain old character sets and alternations:
| |||||||||||||
feedback
|