PROPERTY ADDRESS:aaa
CITY:kkk
COUNTRY:mmm
You could use the regex :(.*) to get every token after “:”.
I would simply take the scraped text and split by newline and split those by “:”.
/Rasmus
my out put may aaa
kkk
mmm
PROPERTY ADDRESS:aaa
CITY:kkk
COUNTRY:mmm
You could use the regex :(.*) to get every token after “:”.
I would simply take the scraped text and split by newline and split those by “:”.
/Rasmus
my out put may aaa
kkk
mmm