/x enable white spaces and comments
/(X\d+).*\1/
/
(X\d+) # product number
.* # any character
\1 # the same product number
/x
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
/(X\d+).*\1/
/
(X\d+) # product number
.* # any character
\1 # the same product number
/x