Break line after a full stop

后端 未结 3 1220
醉梦人生
醉梦人生 2020-12-22 13:02

I am using jsoup to extract content from a webpage. But i want to break the paragraph and display the content on a line by line. This code does not display line by line.Code

3条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-22 13:52

    if sb or el contains the entire text, you could replace each instance of . with .\n as below

    String el = "your text. your text next line. third line.";
    String[] l = el.split("\\.");
    for (String string : l) {
        System.out.println(string+ ".");
    }
    

提交回复
热议问题