Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. CHAPTER 1
  2. Introduction
  3. CHAPTER OVERVIEW
  4.  
  5. (CHAPTERs{1}dn)
  6.  
  7. String text = stripper.getText(document);//The text above
  8. Pattern p = Pattern.compile("(CHAPTER\s{1}\d\n)");
  9. Matcher m = p.matcher(text);
  10. if (m.find()) {
  11. //do action
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement