Hi Ronaldo,
Please split the street as suggested by Paul Bakker.
Add the below code after splitting to replace characters with space.
Check lv_street_1 and lv_street_2 after executing below statements.
REPLACE ALL OCCURRENCES OF REGEX '[^\d]' IN lv_street_1 WITH ''.
REPLACE ALL OCCURRENCES OF REGEX '[^\d]' IN lv_street_2 WITH ''.
Thanks.