Branch Reset Groups

  • + 0 comments

    tS

    function main() {
        // Enter your code here
        let regexPattern: RegExp = /^\d\d(-|---|,|\.|:)(\d\d\1?){3}$/;
        let testString:string = readLine();
        console.log(!!testString.match(regexPattern))
    }