How convert html to BBcode in C#
Posted
by Dmitriy
on Stack Overflow
See other posts from Stack Overflow
or by Dmitriy
Published on 2010-04-25T16:07:48Z
Indexed on
2010/04/25
16:13 UTC
Read the original article
Hit count: 1101
Hello! I need to convert html text into bbcodes. Where i can find how should i do this? For example, I convert links:
regex = new Regex("<a href=\"(.+?)\">(.+?)</a>");
htmlCode = regex.Replace(htmlCode, "[URL]$1[/URL]");
How can i convert all html tags in bbcodes (and replace to empty which isn't bb codes, tag P
© Stack Overflow or respective owner