我正在尝试查找特定字符,例如“?” 然后删除字符后面的所有文本,直到我碰到一个空格。
以便:
var string = '?What is going on here?';
Then the new string would be: 'is going on here';
我一直在使用这个:
var mod_content = content.substring(content.indexOf(' ') + 1);
但这不再有效,因为特定的字符串也可以在字符串的中间。
除了这个,我还没有真正尝试过任何东西。我完全不知道该怎么做。