On 2010-12-01, Peter Otten <__pete...@web.de> wrote: >>>> import re >>>> re.compile("([a-z])([A-Z])").sub(r"\1 \2", "camelCase") > 'camel Case'
Very simple if you know it. Thank you! -- http://mail.python.org/mailman/listinfo/python-list
On 2010-12-01, Peter Otten <__pete...@web.de> wrote: >>>> import re >>>> re.compile("([a-z])([A-Z])").sub(r"\1 \2", "camelCase") > 'camel Case'
Very simple if you know it. Thank you! -- http://mail.python.org/mailman/listinfo/python-list