Class RegexConstants.ImportRegexConstants

java.lang.Object
com.bluebell.greenhouse.platform.constants.system.RegexConstants.ImportRegexConstants
Enclosing class:
RegexConstants

public static final class RegexConstants.ImportRegexConstants extends Object
Import-specific regex patterns (e.g., MT4 HTML exports).
Version:
1.0.2
Author:
Stephen Prizio
  • Field Details

    • MT4_HTML_TABLE_CELL

      public static final String 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 captures VALUE.

      See Also:
    • MT4_HTML_TABLE_CELL_START

      public static final String MT4_HTML_TABLE_CELL_START
      Matches the opening of an HTML table cell (non-capturing).
      See Also:
    • MT4_HTML_TABLE_CELL_END

      public static final String MT4_HTML_TABLE_CELL_END
      Matches the closing <td></td> tag.
      See Also:
    • MT4_HTML_TABLE_ROW

      public static final String 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

      public static final String MT4_HTML_TABLE_ROW_START
      Matches the opening of an HTML table row (non-capturing).
      See Also:
    • MT4_HTML_TABLE_ROW_END

      public static final String MT4_HTML_TABLE_ROW_END
      Matches the closing <tr></tr> tag.
      See Also:
    • MT4_TRANSACTION_NAME

      public static final String MT4_TRANSACTION_NAME
      Matches an MT4 transaction name wrapped in square brackets and captures the inner text (group 1).

      Example: matches [Commission] and captures Commission.

      See Also: