0

我对字符串替换有些困惑。我有类似的字符串

CustomerEmailID=fake; NavigatePageValue=0; IsCustomerInsertSucess=asdewewew;

在这个字符串中,我需要将值更改IsCustomerInsertSucess为其他人。但我很困惑,我怎么能

我试过

String s1 = "CustomerEmailID=fake; NavigatePageValue=0; IsCustomerInsertSucess=asdewewew;";
s1 = s1.replaceAll("IsCustomerInsertSucess=(.*?);", "2026");

但它替换了整个字段,我也需要更改值,你能帮我吗

4

1 回答 1

0

最简单的方法(不是最聪明的)是将第二行更改为

s1 = s1.replaceAll("IsCustomerInsertSucess=(.*?);", "IsCustomerInsertSucess=2026");
于 2012-05-30T16:23:06.743 回答