dtuy84033 2017-04-22 11:24
浏览 192
已采纳

从PHP中的字符串中提取地址的一部分

I created a html form in which you can enter your street address in a single string. How can I extract the street number, street name and street type (crescent, road, street etc) in PHP? I am not sure of the length of the string they will enter and it might not extract the correct information.

Please kindly help as I am new in coding in PHP.

Here is my code below:

$address = $_POST["address"];

echo "Your address is: $address <br>";

$addressSubstring = substr($address,0 , 15);

echo "Address: $addressSubstring <br>";

$strNumber = substr($addressSubstring, 0, 2);

$strName = substr($addressSubstring, 2, 8);

$strType = substr($addressSubstring, 8, 15);

echo "Your street number is: $strNumber <br>";
echo "Your street name is: $strName <br>";
echo "Your street type is: $strType <br>"
  • 写回答

2条回答 默认 最新

  • douzheyo2617 2017-04-22 12:12
    关注

    Keeping in mind that road types are "crescent|road|street":

    Using regular expressions can solve the issue:

    <?php
    $address = '43 Willow Street'; // $_POST["address"] or '35 Hanover Crescent & 52 Longford Road';
    
    preg_match_all("/(\d+)(.+?)(crescent|road|street)/i", $example, $out_arr);
    
    // $no_of_addresses_found = count($out_arr[0]); // in case of future improvements
    $strNumber = $out_arr[1][0];     // 43
    $strName = trim($out_arr[2][0]); // Willow
    $strType = $out_arr[3][0];       // Street
    
    echo "Your street number is: $strNumber <br>";
    echo "Your street name is: $strName <br>";
    echo "Your street type is: $strType <br>"
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法