Class RegexConstants
java.lang.Object
com.bluebell.greenhouse.platform.constants.system.RegexConstants
Constants used for regex & strings.
- Version:
- 1.0.2
- Author:
- Stephen Prizio
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classImport-specific regex patterns (e.g., MT4 HTML exports). -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringTemplate interpolation token used in email/HTML templates.static final StringSymbol validation pattern for market prices.static final StringGlobal Phone number regex (1) = country, (2) = area code, (3) = exchange, (4) = subscriber, (5) = extension. -
Method Summary
-
Field Details
-
PHONE_NUMBER_REGEX
Global Phone number regex (1) = country, (2) = area code, (3) = exchange, (4) = subscriber, (5) = extension. where (x) indicates matcher group- See Also:
-
MARKET_PRICE_VALID_SYMBOL_REGEX
Symbol validation pattern for market prices.Rules: must start with a letter; subsequent characters may be letters, digits, dot (
.), or exclamation (!).- See Also:
-
EMAIL_TEMPLATE_INTERPOLATION
Template interpolation token used in email/HTML templates.Matches placeholders of the form
${name}wherenamecontains letters and underscores.- See Also:
-