Regex
Match Multiple Repeating Characters or Sets of Characters Using RegEx
Matching One or More Characters To match one or more instances of a character (or set),simply append a + character. + matches one or more characters (at least one; zero would not match). Whereas a matches a, a+ matches one or more as. Similarly, whereas [0-9] matches any digits, [0-9]+ Read more…