Wraps the java Pattern class, to allow for easier regular expression matching
(including making the matches/finds methods return Option[Matcher], so that we can
flatMap a set of strings with these methods).
Linear Supertypes
AnyRef, Any
Ordering
Alphabetic
By Inheritance
Inherited
RegExp
AnyRef
Any
Hide All
Show All
Visibility
Public
All
Instance Constructors
newRegExp(patternString: String)
patternString
The Pattern-compatiable regular expression to be compiled and used for matching.
Wraps the java Pattern class, to allow for easier regular expression matching (including making the matches/finds methods return Option[Matcher], so that we can flatMap a set of strings with these methods).