первого взгляда. Достаточно не удобно разбирать их самостоятельно с документацией под рукой.
Есть ли сайт, который сможет это сделать вместо меня?
Пример:
ввожу: ".?(\\d{3}).*(\\d{3}).*(\\d{4})"
получаю:
".?" -> 0 or 1 character to account for the optional open parenthesis
"(\\d{3})" -> 3 digit characters (first capture group i.e. first 3 digits)
".*" -> 0 or more characters to account for the optional closing parenthesis, hyphen, and space characters
"(\\d{3})" -> 3 digit characters (second capture group i.e. next 3 digits)
".*" -> 0 or more characters to account for the optional hyphen and space characters
"(\\d{4})" -> 4 digit characters (third capture group i.e. last 4 digits)
https://regex101.com/
ух ти, спасибо! но я искал именно разбор, а не то что оно найдет
Ну оно там ещё подсвечивает и объясняет
там справа пишет что за что отвечает
Обсуждают сегодня