I am reading though some old code that seems to aim to take out a sequence of periods (......) in a table of contents. It utilizes a java regular expression to accomplish this. This is the code that was used.
input = input.replaceAll( ".*<elipses>.*", "" );
However I don't see mention of a regex with "<>'s" except here:
Special constructs (named-capturing and non-capturing)
(?<name>X) X, as a named-capturing group
(http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html)
What does the <elipsis> mean?
<elipses>in your text?.*is greedy so I don't see how<elipses>would work as a match for....