Remove HTML tags from text, punctuation, numerals, and English words in English and Chinese

Source: Internet
Author: User

Before the Chinese word segmentation statistics, often have to crawl down the text contained in some of the tags, punctuation, English letters, such as filtering out, this process is called data cleansing.

#Coding=utf-8ImportReImportCodecsdefstrs_filter (file): With Codecs.open (file,"R","UTF8") as F,codecs.open ("Result.txt","A +","UTF8") as C:lines=F.readlines () forLineinchlines:#line=line.decode (' UTF8 ')Re_html=re.compile ('<[^>]+>'. Decode ('UTF8'))#start matching from ' < ', not ' > ' characters are skipped until ' > 'Re_punc=re.compile ('[\s+\.\!\/_,$%^* (+\ "\ ']+|[ +--! ,。? , [email protected]#¥%......&*, "": ()]+'. Decode ('UTF8'))#Remove PunctuationRe_digits_letter=re.compile ('\w+'. Decode ('UTF8'))#remove numbers and lettersLine=re_html.sub ("', line) line=re_punc.sub ("", line) line=re_digits_letter.sub ("", line) C.write (line) Strs_filter ("Strip.txt")

The above code can be removed from the Chinese word segmentation statistics unrelated content, the effect is as follows:

Remove HTML tags from text, punctuation, numerals, and English words in English and Chinese

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.