从R / Python

时间:2018-02-07 07:35:14

标签: python r regex text-mining

"字符串?是由一串字符串组成,但问题是在字符串中删除问号?没有删除其他问号。任何人都可以看看?"

在上面的文字中,我必须改变"字符串?" to" string"。但我不希望声明失去其余的?在文中。

结果文本应为: "该字符串由一串字符串组成,但问题是在删除其他问号的情况下删除字符串中的问号。任何人都可以看看?"

我已经尝试了gsub,string_replace和其他一些方法,他们最终删除或替换了这个单词并仍然保留了"?"

1 个答案:

答案 0 :(得分:1)

string.replace('string?', 'string')

给出:

'The string is made up a load of strings but the problem is the removal of 
question mark in the word string without removing the other question marks. 
can anybody have a look?'