【问题标题】:How to split a split a string twice如何拆分一个字符串两次
【发布时间】:2014-01-16 06:52:24
【问题描述】:

我试图将一个字符串拆分两次

String example = response;
    String [] array = example.split("<section>");
    System.out.println(array[0]);

    String [] array2 = example.split("<title>");
    System.out.println(array2[2]);

我正在尝试通过使用此代码来实现这一点(未成功),但我不想打印第一个拆分,而是想保存它并继续进行第二个拆分。谁有解决这个问题的方法或更好的方法来拆分字符串两次?谢谢

【问题讨论】:

  • 请输入/输出样本?
  • String[] onlyOneArray = example.split("(&lt;section&gt;)|(&lt;title&gt;)");

标签: java arrays string split


【解决方案1】:

这可能看起来很多...但您确实应该使用 DOM 解析器来操作 XML:

import java.io.StringReader;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXParseException;

public class ExtractXML {
    public static void main(String argv[]) {
        DocumentBuilderFactory docBuilderFactory = null;
        DocumentBuilder docBuilder = null;
        Document doc = null;
        String rawStr = "Response: <section><title>Input interpretation</title>"
                + "<sectioncontents>Ireland</sectioncontents></section>"
                + "<section><title>Result</title>"
                + "<sectioncontents>Michael D. Higgins</sectioncontents></section>";
        String docStr = rawStr.substring(rawStr.indexOf('<'));
        String answer = "";

        try {
            docBuilderFactory = DocumentBuilderFactory.newInstance();
            docBuilder = docBuilderFactory.newDocumentBuilder();
            doc = docBuilder.parse(new InputSource(new StringReader(docStr)));
        } catch (SAXParseException e) {
            System.out.println("Doc missing root node, adding and trying again...");
            docStr = String.format("<root>%s</root>", docStr);

            try {
                doc = docBuilder.parse(new InputSource(new StringReader(docStr)));
            } catch (Exception e1) {
                System.out.printf("Malformed XML: %s\n", e1.getMessage());
                System.exit(0);
            }
        } catch (Exception e) {
            System.out.printf("Something went wrong: %s\n", e.getMessage());
        } finally {
            try {
                // Normalize text representation:
                doc.getDocumentElement().normalize();

                NodeList titles = doc.getElementsByTagName("title");

                for (int tIndex = 0; tIndex < titles.getLength(); tIndex++) {
                    Node node = titles.item(tIndex);

                    if (node.getTextContent().equals("Result")) {
                        Node parent = node.getParentNode();
                        NodeList children = parent.getChildNodes();

                        for (int cIndex = 0; cIndex < children.getLength(); cIndex++) {
                            Node child = children.item(cIndex);
                            if (child.getNodeName() == "sectioncontents") {
                                answer = child.getTextContent();
                            }
                        }
                    }
                }

                System.out.printf("Answer: %s\n", answer);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

输出:

[Fatal Error] :1:98: The markup in the document following the root element must be well-formed.
Doc missing root node, adding and trying again...
Answer: Michael D. Higgins

【讨论】:

    【解决方案2】:

    我真的不认为你想在这里使用 split 。我想你想使用类似的东西

    // Extract a given tag value from an input txt.
    public static String extractTagValue(String txt,
        String tag) {
      if (tag == null || txt == null) {
        return "";
      }
      String lcText = txt.toLowerCase();
      tag = tag.trim().toLowerCase();
      String openTag = "<" + tag + ">";
      String closeTag = "</" + tag + ">";
      int pos1 = lcText.indexOf(openTag);
      if (pos1 > -1) {
        pos1 += openTag.length();
        int pos2 = lcText.indexOf(closeTag, pos1 + 1);
        if (pos2 > -1) {
          return txt.substring(pos1, pos2);
        }
      }
      return "";
    }
    
    public static void main(String[] args) {
      String example = "<title>Hello</title><section>World</SECTION>";
      String section = extractTagValue(example,
          "section");
      String title = extractTagValue(example, "title");
    
      System.out.printf("%s, %s\n", title, section);
    }
    

    执行时输出

    Hello, World
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2016-04-14
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-10-07
      • 2022-01-01
      • 2015-01-11
      相关资源
      最近更新 更多