proctor wrote:
> i have a regex: rx_test = re.compile('/x([^x])*x/')
You probably want...
rx_test = re.compile('/x([^x]*)x/')
- Josiah
--
http://mail.python.org/mailman/listinfo/python-list
proctor wrote:
> i have a regex: rx_test = re.compile('/x([^x])*x/')
You probably want...
rx_test = re.compile('/x([^x]*)x/')
- Josiah
--
http://mail.python.org/mailman/listinfo/python-list