小编典典

Java:使用String.indexOf()检查撇号字符

java

我正在尝试解析一个字符串,我需要使用子字符串来做到这一点。该字符串包含撇号字符。我的问题是,如何使用temp来获取String.indexOf以获取撇号字符的索引?

//temp variable currently contains the string 'hello' including the apostrophe character
String finalWord = temp.substring(temp.indexOf('''), temp.indexOf('.'));

阅读 323

收藏
2020-11-30

共1个答案

小编典典

您的变量名错误(final是保留字),应使用转义符:

String finalword = temp.substring(temp.indexOf('\''), temp.indexOf('.'));
2020-11-30