Your regular expression does not match this string. Here is a regular expression explanation
^ Start of string. Matches successfully.
\\ s * Zero or more whitespace. Matches the empty string.
[0-9] + One or more digits. Matches "70".
\\ s + One or more whitespace. Fails to match.
"70" - , , . , :
address = address.replace("^\\s*[0-9-]+\\s+", "");
, ( ), :