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.

link|improve this question

How does SchemaSpy work? Are you passing it a list of table names or are you passing it a regex and it's doing the matching? – Mark Biek May 22 '09 at 18:57
I'm passing a regex (it's the -i flag) and it'll import the matches, or so it says in any case =) – echoblaze May 22 '09 at 19:10
1  
@echoblaze: If you’re processing XML, why don’t you use an XML parser? That would be much easier than using regular expressions. – Gumbo May 22 '09 at 19:25
feedback

1 Answer

up vote 34 down vote accepted

You could use a negative look-ahead assertion:

^(?!tbd_).+

Or a negative look-behind assertion:

(^.{1,3}$|^.{4}(?<!tbd_).*)

Or just plain old character sets and alternations:

^([^t]|t($|[^b]|b($|[^d]|d($|[^_])))).*
link|improve this answer
Is this restricted to any particular regex engines? – Mark Biek May 22 '09 at 18:59
I only ask because that second one still seems to match tbd_ in my test. The first one is great though. – Mark Biek May 22 '09 at 19:01
2  
Take a look at regular-expressions.info’s flavor comparison: regular-expressions.info/refflavors.html – Gumbo May 22 '09 at 19:02
Just fixed the second regex. – Gumbo May 22 '09 at 19:02
Excellent. Thanks for the link – Mark Biek May 22 '09 at 19:02
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.