Tell us what’s happening:
let repeatNum = “42 42 42”;
let reRegex = /^(\d+)\s\1\s\1$/;// Change this line
let result = reRegex.test(repeatNum); i have this problem please help me: your regex should not match the string 42\t42\t42
Your code so far
let repeatNum = "42 42 42";
let reRegex = /^(\d+)\s\1\s\1$/;// Change this line
let result = reRegex.test(repeatNum);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Challenge Information:
Regular Expressions - Reuse Patterns Using Capture Groups