在 PHP 中排序字母数字列表

发布于 2024-08-10 00:34:24 字数 187 浏览 2 评论 0原文

你好, 我需要在 PHP 中订购一个列表,如下所示: B1200 120A81 00A12 00A22 C100B C100C

订购列表为: 00A12 00A22 120A81 B1200 C100B C100C

我正在考虑将每一行拆分为多维数组并对其进行排序,但我陷入困境,也许有一种完全不同的方法。

谢谢!

HI,
i need to order a list in PHP that looks like:
B1200
120A81
00A12
00A22
C100B
C100C

ordered list would be:
00A12
00A22
120A81
B1200
C100B
C100C

I was thinking about splitting each line in multidimensional arrays and order it but i am stuck and maybe theres a completely different way for that.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下伊人醉 2024-08-17 00:34:24

如果普通的排序函数可以做你想要的事情,那么分割/排序就会很容易:

// break up the string into an array on spaces
$new_array = explode(' ', $input);
// sort the array
sort($new_array);
// put the string back together
$sorted_string = implode(' ', $new_array);

或者,更简洁地说:

$sorted_string = implode(' ', sort(explode(' ', $input)));

如果默认的 sort() 不能给你你想要的东西,你应该检查 < a href="https://www.php.net/manual/en/function.usort.php" rel="nofollow noreferrer">usort() 函数。

If the normal sort function will do what you want then splitting/sorting it would be easy:

// break up the string into an array on spaces
$new_array = explode(' ', $input);
// sort the array
sort($new_array);
// put the string back together
$sorted_string = implode(' ', $new_array);

or, more succinctly:

$sorted_string = implode(' ', sort(explode(' ', $input)));

If the default sort() won't give you what you want you should check out the usort() function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文