Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
string.replace(s, old, new[, maxreplace])
功能参数 s:要搜索和替换的字符串。 old:您要替换的旧子字符串。 new:您希望替换旧子字符串的新子字符串。 maxreplace:您希望替换子字符串的最大次数。
功能参数
你的功能:
ch = ch.replace(u'۔','</s><s>')
您要更改为参数的字符串在哪里?我不明白你在那里做什么试试这个:
ch = ch.replace(ch,'۔','</s><s>')
也许程序从右到左读取但从左到右写入。