Jump to content

Recommended Posts


Posted

You don't need to use RegEx for simple tags that have no parameters. Just use a straightforward Replace.

_msg = _msg.Replace("[list]", "<ul>");
_msg = _msg.Replace("[*]", "<li>");
_msg = _msg.Replace("[/list]", "</ul>");

Posted

Yeah, i actually didn't think about that lol :P

Thx, i'll think i've only got to use regex for the <li></li> part and that's not hard :)

Thx for clearing my mind at this late hour ;)

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...