Uses of Package
com.google.common.labs.regex
Packages that use com.google.common.labs.regex
Package
Description
Regex parser for dev tools (requires dot-parse artifact)
-
Classes in com.google.common.labs.regex used by com.google.common.labs.regexClassDescriptionDefines the Abstract Syntax Tree (AST) for a regular expression.Represents a choice between multiple alternative regex patterns.Represents an anchor, which matches a position like start or end of a line.Represents a quantifier with a minimum bound, like
{min,},*, or+.Represents a quantifier with a maximum bound and a minimum of 0, like{0,max}or?.Represents a character property, like\p{Lower}or\P{Lower}.Represents a negated character property, like\P{Lower}.Represents a custom character class, like[a-z]or[^0-9].A positive character class, like[a-z].A negated character class, like[^a-z].Base interface for elements within aRegexPattern.CharacterSet.Represents a grouping construct in a regex.Represents a quantifier with both minimum and maximum bounds, like{n}or{min,max}.Represents a lookaround assertion:(?=...),(?!...),(?<=...),(?<!...).Represents a POSIX character class inside a CharacterSet: e.g.Represents a predefined character class like\dor\w.Represents a regex pattern that is modified by a quantifier.Base interface for all quantifier types.Represents a sequence of regex patterns that must match consecutively.