需求:
str1 = "
"""想把 這段字串的標籤全部都去掉,比如去掉 , ,"""
.。只保留不帶<>的內容,但是要保留
,有什麼好的辦法嗎?使用正則可以實現這個工作:
# coding:utf-8importre
newline = """
"""newline= newline.replace('
','!!!###')
re_comment = re.compile('
<[^>]*>')
newlines = re_comment.sub(''
, newline)
newlines = newlines.replace('
!!!###
','').replace('
','').replace('
','')
print newlines
輸出結果是:
c:\python27\python.exe f:/squid_frame/zyxt__weibo/test.py公司:揚州報業集團
地區:江蘇 ,揚州
process finished with exit code 0
字串過濾
這個我這裡自己一直用的幾個函式,下面貼出來。希望盡量不是直接要例項就去用,而不關心他本來的意義和實現思路等。加油!using system using system.collections.generic using system.text using system.text.regularexpr...
swift 過濾字串 Swift 字串
swift 字串 swift 字串是一系列字元的集合。例如 hello,world 這樣的有序的字元型別的值的集合,它的資料型別為 string。建立字串 你可以通過使用字串字面量或 string 類的例項來建立乙個字串 import cocoa 使用字串字面量 var stringa hello,...
過濾字串重複
如 123,123,456,456 過濾成 123,456 思路為將字串轉為陣列,再將陣列轉為list,list轉為set後即可過濾掉重複部分,之後將set轉為所需資料型別即可。過濾字串重複 param str return suppresswarnings public static string...