def cleanJSS1(str):
if str == None: raise ValueError("cleanJSS: Token is None type")
txt = str
for i in range(0,len(str)):
c = str[i]
if (ord(c) <= 127 and c != '_'):
pass
else:
txt = txt.replace(c, makeid(1))
return txt
评论列表
文章目录