forked from mrlan/EnglishPal
				
			更新 'app/wordfreqCMD.py'
							parent
							
								
									ce2af6665d
								
							
						
					
					
						commit
						35205d2066
					
				| 
						 | 
				
			
			@ -44,7 +44,7 @@ def remove_punctuation(s): # 这里是s是形参 (parameter)。函数被调用
 | 
			
		|||
    for c in special_characters:
 | 
			
		||||
        s = s.replace(c, ' ') # 防止出现把 apple,apple 移掉逗号后变成 appleapple 情况
 | 
			
		||||
    s = s.replace('--', ' ')'''
 | 
			
		||||
    cop = re.compile("[^a-z^A-Z^\\']")#通过正则表达式保留英文字符和-、'两个特殊字符
 | 
			
		||||
    cop = re.compile("[^a-z^A-Z^\\']")#通过正则表达式保留英文字符和'特殊字符
 | 
			
		||||
    s=cop.sub(' ' , s)
 | 
			
		||||
    s = s.strip() # 去除前后的空格
 | 
			
		||||
    #s=keep_need_punctuation(s,'-')
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue