duanfengwang9157 2016-03-16 12:32
浏览 24
已采纳

在字母和短划线( - )php之间获取数字

I have a string that contains a letter, numbers and a dash (-). The numbers represent a specific month and a specific year.

(i.e. 'M4-16' -- April 2016)

I need to break out the 4 by itself and then the 16 by itself. I'm blanking on how to do this right now, so sorry for not including what I've tried.

Thank you in advance!

  • 写回答

1条回答 默认 最新

  • dongtu9823 2016-03-16 12:43
    关注

    Since you know the format of the relatively simple string, no regex is needed:

    $str = "M4-16";
    $parts = explode("-", $str); // Gives ["M4", "16"]
    $part1 = substr($parts[0], 1); // Gives 4
    $part2 = $parts[1]; // Gives 16
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部