在 java 中第 n 次出现的子字符串
substring with nth occurrence in java
我有字符串 1-12.32;2-100.00;3-82.32;从这里我需要根据我的传递位置值提取数字。如果我通过 3,我需要 82.32,同样如果我通过 2,我需要 100.00。我构建了一个如下所示的函数,但它没有按预期工作。有人可以纠正 this/help 吗?
function String res(String str, String pos){
String res=str.substring(str.indexOf(pos+"-")+2, str.indexOf(";",str.indexOf(pos)));
return res;
}
其中 str= 1-12.32;2-100.00;3-82.32;
pos=1(或)2(或)3
您的结束索引不正确。您应该搜索第一个“;”的索引在开始索引之后。
int begin = str.indexOf(pos+"-") + 2;
String res=str.substring(begin, str.indexOf(";",begin));
str.indexOf(";",str.indexOf(pos))
会给你第一个“;”的索引,因为str.indexOf(pos)
给你第一个“2”的索引,也就是“1-”中的第一个“2” 12.32;.
我有字符串 1-12.32;2-100.00;3-82.32;从这里我需要根据我的传递位置值提取数字。如果我通过 3,我需要 82.32,同样如果我通过 2,我需要 100.00。我构建了一个如下所示的函数,但它没有按预期工作。有人可以纠正 this/help 吗?
function String res(String str, String pos){
String res=str.substring(str.indexOf(pos+"-")+2, str.indexOf(";",str.indexOf(pos)));
return res;
}
其中 str= 1-12.32;2-100.00;3-82.32; pos=1(或)2(或)3
您的结束索引不正确。您应该搜索第一个“;”的索引在开始索引之后。
int begin = str.indexOf(pos+"-") + 2;
String res=str.substring(begin, str.indexOf(";",begin));
str.indexOf(";",str.indexOf(pos))
会给你第一个“;”的索引,因为str.indexOf(pos)
给你第一个“2”的索引,也就是“1-”中的第一个“2” 12.32;.