New to python, competent in a few languages, but can't see a 'snazzy' way of doing the following. I'm sure it's screaming out for a regex, but any solution I can come up with (using regex groups and what not) becomes insane quite quickly.
So, I have a string with html-like tags that I want to replace with actual html tags.
For example:
Hello, my name is /bJane/b.
Should become:
Hello, my name is <b>Jane</b>.
It might be combo'd with [i]talic and [u]nderline as well:
/iHello/i, my /uname/u is /b/i/uJane/b/i/u.
Should become:
<i>Hello</i>, my <u>name</u> is <b><i><u>Jane</b></i></u>.
Obviously a straight str.replace won't work because every 2nd token needs to be preceeded with the forwardslash.
For clarity, if tokens are being combo'd, it's always first opened, first closed.
Many thanks!
PS: Before anybody gets excited, I know that this sort of thing should be done with CSS, blah, blah, blah, but I didn't write the software, I'm just reversing its output!

<b><i><u>Jane</u></i></b>but that might be more difficult to do correctly. – Mark Byers Mar 16 '11 at 20:47