0

我有 3 个字符串,每个字符串包含 2 个字段和 2 个值。我需要字符串的正则表达式,以便获取数据。这是3个字符串:

TTextRecordByLanguage{Text=Enter here the amount to transfer from your compulsory book saving account to your compulsory checking account; Id=55; }

TTextRecordByLanguage{Text=Hello World, CaribPayActivity!; Id=2; }

TTextRecordByLanguage{Text=(iphone); Id=4; }

这两个字段是Textand Id,所以我需要一个表达式来获取Text字段和分号 ( ;) 之间的数据。确保包含特殊符号和任何数据。

更新 ::

我试过的......

Pattern pinPattern = Pattern.compile("Text=([a-zA-Z0-9 \\E]*);");
                        ArrayList<String> pins = new ArrayList<String>();
                        Matcher m = pinPattern.matcher(soapObject.toString());
                        while (m.find()) {
                            pins.add(m.group(1));
                            s[i] = m.group(1);
                            
                        }
                        Log.i("TAG", "ARRAY=>"+ s[i]);
4

1 回答 1

1

我建议这样的RE:

Text=.*?;

例如:最后一个字符串的返回应该是

文字=(iphone);

那么你可以消除Text=; 超出字符串,因为您只想要内容。

于 2012-05-25T05:32:55.613 回答