Python implements HTML transcoding UBB code (HTML2UBB)

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 program, wrote a function, by the way to exercise their own regular.

Import redef Html2ubb (content): #以下是将html标签转为ubb标签pattern = Re.compile (']*> ([ss]+?) ', 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 ('([ss]+?)', Re. I) content = pattern.sub (R ' [b]1[/b] ', content) pattern = Re.compile (' ([ss]+?) ', 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.replace (' > ', ' > ') content = Content.replace (' "', '" ') content = Content.replace (' "', '" ') content = Content.replace (' "', '" ') content = content.replace (' © ', ' © ') content = Content.replace (' ® ', ' ® ') content = Content.replace (', ') content = Content.replace ('-', '-') content = Content.replace (' – ', ' – ') content = Content.replace ( ' ‹ ', ' ‹ ') content = content.replace (' › ', ' › ') content = Content.replace (' ... ') content = Content.replace (' & ', ' & ') return content

The Html2ubb function is called directly when used, and the return value is the UBB code of the HTML turn UBB

  • Related Article

    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.