Class RegexConstants.ImportRegexConstants
java.lang.Object
com.bluebell.greenhouse.platform.constants.system.RegexConstants.ImportRegexConstants
- Enclosing class:
RegexConstants
Import-specific regex patterns (e.g., MT4 HTML exports).
- Version:
- 1.0.2
- Author:
- Stephen Prizio
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringMatches a single HTML table cell and captures its inner content (group 1).static final StringMatches the closing<td></td>tag.static final StringMatches the opening of an HTML table cell (non-capturing).static final StringMatches a single HTML table row and captures its inner content (group 1).static final StringMatches the closing<tr></tr>tag.static final StringMatches the opening of an HTML table row (non-capturing).static final StringMatches an MT4 transaction name wrapped in square brackets and captures the inner text (group 1). -
Method Summary
-
Field Details
-
MT4_HTML_TABLE_CELL
Matches a single HTML table cell and captures its inner content (group 1).Example: matches
<td class="x">VALUE</td>and capturesVALUE.- See Also:
-
MT4_HTML_TABLE_CELL_START
Matches the opening of an HTML table cell (non-capturing).- See Also:
-
MT4_HTML_TABLE_CELL_END
-
MT4_HTML_TABLE_ROW
Matches a single HTML table row and captures its inner content (group 1).Example: matches
<tr class=\"x\">...cells...</tr>and captures...cells....- See Also:
-
MT4_HTML_TABLE_ROW_START
Matches the opening of an HTML table row (non-capturing).- See Also:
-
MT4_HTML_TABLE_ROW_END
-
MT4_TRANSACTION_NAME
Matches an MT4 transaction name wrapped in square brackets and captures the inner text (group 1).Example: matches
[Commission]and capturesCommission.- See Also:
-