Canadian address format puts unit number(if any) in front of house number.
i.e. 50-100 Street name, 50 - 100 Street name
One possible solution is the bellow code but it doesn't return the apartment number in the additional information. Can you add a fix on next release?
private static $generalNumberPrefixes = [
// English
'No [.:]?',
'Nos ([.:]|\s)',
'Number \s',
//Canada
'^[0-9]*\s?\-\s?',
// German
'Nr [.:]?',
'Nummer \s',
// Other
'№ [.:]?',
'Nº [.:]?',
'n° [.:]?'
];
Canadian address format puts unit number(if any) in front of house number.
i.e. 50-100 Street name, 50 - 100 Street name
One possible solution is the bellow code but it doesn't return the apartment number in the additional information. Can you add a fix on next release?