JavaVerbalExpressions v1.1 Release Notes

Release Date: 2014-05-17 // almost 10 years ago
  • ๐Ÿ†• New features

    #23 - capture, count methods

    #25 - predefined character class methods

    \d A digit: [0-9]
    \D A non-digit: [^0-9]
    \s A whitespace character: [\t\n\x0B\f\r]
    \S A non-whitespace character: [^\s]
    \w A word character: [a-zA-Z_0-9]
    \W A non-word character: [^\w]
    

    ๐Ÿ‘Œ Improvements

    • โœ… #24 - javadoc and lot of tests