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条)

报告相同问题?

悬赏问题

  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在
  • ¥15 前端echarts坐标轴问题