Nunca analise o html com regex! Esse é o erro mais comum nos sites da stackexchange.
É melhor usar um analisador de XML / HTML, como xmllint , xmlstarlet ou saxon-lint meu próprio projeto
Exemplos:
xmllint --xpath '//Currentnumber/text()' file.html
xmlstarlet sel -t -v '//Currentnumber/text()' file.html
saxon-lint --xpath --html '//Currentnumber/text()' file.html
Verifique: Usando expressões regulares com tags HTML