PHP:如何将逗号分隔的年级字符串转换为英语可读的“年级范围”?
我有一个学生的年级字符串(不是数组)。以下是一些可能条目的示例:
k,1,2,3,4,5
1,2,3,4
1
1,2
3,4,5
学生的最高年级是 5。
我想将字符串转换为英语可读范围。因此,鉴于我上面的示例,这将是输出:
K & Up
1-4
1
1 & 2
3 & Up
如何最好地处理这个问题?感谢示例,谢谢!
I have a string (not an array) of grade levels for a student. Here are some examples of possible entries:
k,1,2,3,4,5
1,2,3,4
1
1,2
3,4,5
Maximum grade level for a student is 5.
I want to convert the string to an english readable range. So given my above examples, this would be the output:
K & Up
1-4
1
1 & 2
3 & Up
How best to handle this? Examples are appreciated, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有那封信的介入,事情可能会容易得多。
This could have been much easier had it not been for the involvement of the letter.