正则表达式
景荣先生
由简到繁,由繁到简!
展开
-
目前找到的匹配网址最好的正则表达式
(https?|ftp|file)://[-\w+&@#/%=~|?!:,.;]+[-\w+&@#/%=~|]注意:[]中特殊字符不需要转义;"/" 只有在JavaScript中需要转义。原创 2019-04-20 10:17:01 · 3831 阅读 · 1 评论 -
正则表达式匹配中文时发现的问题
大家使用正则表达式匹配中文时,常用 [\u4e00-\u9fa5] ,但有时使用 [\u4e00-\u9fa5] 匹配汉字时,发现有的汉字匹配不到,如:㸌如㔩叶使用Python3测试:r = '[^\u4e00-\u9fa5]' #非汉字for i in words: word = re.sub(r, '', i) #替换掉非汉字 if len(word) == 1:...原创 2019-04-29 10:39:07 · 2248 阅读 · 0 评论