Backreference within a character class
Fredrik Lundh
effbot at telia.com
Thu Feb 24 16:56:00 EST 2000
More information about the Python-list mailing list
Thu Feb 24 16:56:00 EST 2000
- Previous message (by thread): Backreference within a character class
- Next message (by thread): Backreference within a character class
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
taashlo at sandia.gov wrote: > Using the re module, lets say that I want to match "XIX" but not "XXX" > or "WOW" but not "WWW". In my first attempt I used r"(.)([^\1])\1". > This, of course, did't work because the "\1" in character class isn't > interpreted as a backreference. > > So is it possible to specify a regular expression to match these > patterns? this might work: r"(.)(?!\1).\1" </F>
- Previous message (by thread): Backreference within a character class
- Next message (by thread): Backreference within a character class
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list