我想将单个地址字段拆分为街道和门牌号字段。
这是一些示例数据:

Examplestreet 1
Examplestreet 1A
Examplestreet 1 B
The Examplest street 2
1st Example street 3A
1st Example street 13 A

现在,我在想,我从右边开始寻找我遇到的第一个号码,然后继续前进,直到第一个空格被编码并在那里分割。
你会得到这样的东西:
Example:                           1st Example street 13 A
Start from the right:              A
Find the first number:             A 3
Keep going until the first space:  A 31
Split here:                        1st Example Street    |     13A

我想让它单独在mySQL中工作,但也可以使用PHP。
当你知道更好的方法,我想知道。
我开始研究SUBSTRING_INDEX,但这并没有起到作用。
坦白说,我不知道从哪里开始。

最佳答案

如果门牌号总是在字符串的末尾,从数字开始,我们可以使用regexp:

<?php
$names = array(
    'Examplestreet 1',
    'Examplestreet 1A',
    'Examplestreet 1 B',
    'The Examplest street 2',
    '1st Example street 3A',
    '1st Example street 13 A ',
    );

foreach($names as $value)
{
    $matches = array();
    if (preg_match('/.*\s(\d.*)/', $value, $matches))
    {
        print $matches[1]."\n";
    }
}

输出:
1
1A
1 B
2
3A
13 A

09-11 19:58