1
map.put("RowID", String.valueOf(RowID));
map.put(KEY_NAME, parser.getValue(e, KEY_NAME));

解析後、データを取得しています

13/2012 | Section 10(15), item (h) of sub-clause (iv) of the Income-tax Act, 1961 - Exemptions - Interest on bonds/debentures - Notified bonds/debentures of Public Sector Companies - Corrigendum to notification no.7/2012, dated 14-2-2012

|そんなデータをあとから分けて印刷したい

13/2012 Section
10(15), item (h) of sub-clause (iv) of the Income-tax Act, 1961 - Exemptions - Interest on bonds/debentures - Notified bonds/debentures of Public Sector Companies - Corrigendum to notification no.7/2012, dated 14-2-2012

これどうやってするの?

4

3 に答える 3

2

String.replace() を使用します。

例えば:

    String s = "hello | world";

    System.out.println(s.replace("|", "\n"));

これは出力します:

ハロー
ワールド

于 2012-10-10T08:31:49.360 に答える
1

メソッドを使用できますString#replace

String finalString = oldString.replace("|", "\n");

または使用String#split

String[] splitted = oldString.split(Pattern.quote("|"));
于 2012-10-10T08:28:36.987 に答える
1

プラットフォームに依存しないこと (Android で作業しているため、厳密には必要ありません)

System.out.println(yourString.replaceAll("\\|", System.getProperty("line.separator"));

これはすべてを置き換えます | 文字列に複数の | がある場合も同様です。

于 2012-10-10T08:36:53.877 に答える