分解由空格包围的连字符上的字符串
我有一个字符串,可以是以下之一:
$code = "123456 - US";
$code = "12-3456 - US";
$code = "WD123 - US";
$code = "A0-12 - US";
$code = "123456 - Poland";
如何找出第一部分(如 123456
或 A0-12
)和最后一部分(如-<代码>美国还是波兰
)?
I have a string which can be one of the following:
$code = "123456 - US";
$code = "12-3456 - US";
$code = "WD123 - US";
$code = "A0-12 - US";
$code = "123456 - Poland";
How can I find out the first part (like 123456
or A0-12
) and the last part (like-US
or Poland
)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用爆炸将其分成两部分。
这将为您提供一个包含两个元素的数组:“123456”和“US”
you could use explode to split it into two parts.
That will give you an array with two elements: "123456" and "US"