Python Implements HTML UBB code (HTML2UBB) _python

Source: Internet
Author: User

These two days in Python to write a collector, there is a functional module is the HTML code conversion to UBB, online seemingly no ready-made procedures, they wrote a function, by the way exercise their regular.

Import re def Html2ubb (content): #以下是将html标签转为ubb标签 pattern = re.compile (' <a href=\ ') ([ss]+?) \ [^>]*> ([ss]+?) </a> ', Re. I) content = pattern.sub (R ' [Url=1]2[/url] ', content) pattern = re.compile (' ]+src=\ ' ([^\ "]+) \" [^>]* > ', re. I) content = pattern.sub (R ' [img]1[/img] ', content) pattern = Re.compile (' <strong> ([ss]+?) </strong> ', Re. I) content = pattern.sub (R ' [b]1[/b] ', content) pattern = re.compile (' <font color=\ "([ss]+?) \ > ([ss]+?) </font> ', Re. I) content = pattern.sub (R ' [1]2[/1] ', content) pattern = re.compile (' <[^>]*?> ', re. I) content = Pattern.sub (', content ') #以下是将html转义字符转为普通字符 content = Content.replace (' < ', ' < ') content = Content.re Place (' > ', ' > ') content = Content.replace (' "', '" ') content = Content.replace (' "', '" ') content = Content.replace (' ") ', ' ' '] content = content.replace (' © ', ' © ') content = Content.replace (' ® ', ' ® ') content = content.replace ('   ', ') c
	ontent = Content.replace ('-', '-')Content = Content.replace (' – ', ' – ') content = Content.replace (' ‹ ', ' ‹ ') content = content.replace (' › ', ' › ') content = Cont Ent.replace (' ... ', ' ... ') content = Content.replace (' & ', ' & ') return content

When used directly call the Html2ubb function, the return value is UBB code HTML to UBB

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.