Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #49635
| From | Neil Cerutti <neilc@norwich.edu> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Regular expression negative look-ahead |
| Date | 2013-07-02 12:15 +0000 |
| Organization | Norwich University |
| Message-ID | <b3fuieF5rcbU1@mid.individual.net> (permalink) |
| References | <mailman.4102.1372749590.3114.python-list@python.org> |
On 2013-07-01, Jason Friedman <jsf80238@gmail.com> wrote: > > I have table names in this form: > MY_TABLE > MY_TABLE_CTL > MY_TABLE_DEL > MY_TABLE_RUN > YOUR_TABLE > YOUR_TABLE_CTL > YOUR_TABLE_DEL > YOUR_TABLE_RUN > > I am trying to create a regular expression that will return true for only > these tables: > MY_TABLE > YOUR_TABLE Use the "is not a word" character class on either end. r"\WMY_TABLE\W" r"\WYOUR_TABLE\W" -- Neil Cerutti
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Regular expression negative look-ahead Jason Friedman <jsf80238@gmail.com> - 2013-07-01 17:07 -0600 Re: Regular expression negative look-ahead Neil Cerutti <neilc@norwich.edu> - 2013-07-02 12:15 +0000
csiph-web