Home > Backend Development > PHP Tutorial > mysql - PHP中检索字符串中字符的问题?

mysql - PHP中检索字符串中字符的问题?

WBOY
Release: 2016-06-06 20:19:49
Original
1144 people have browsed it

问题是这样的。学校的学号是数字和字母混合的。字母代表了系名。
比如6SC14032S中SC是理学部,现在想把相同学部学生的学号抽出来放入数组,该怎么办啊。(学号存在MYSQL数据库中。)

回复内容:

问题是这样的。学校的学号是数字和字母混合的。字母代表了系名。
比如6SC14032S中SC是理学部,现在想把相同学部学生的学号抽出来放入数组,该怎么办啊。(学号存在MYSQL数据库中。)

数据库中的话,学号应该是存在单独的字段的爸,把这个字段取出来不就行了

用正则分离 系部 和 学号
如系部为 $xb 学号为 $xh
数组 $results[$xb][]=$xh
你是这个需求吗

估计这个管用 preg_match("/\d[a-zA-Z]+(\d)/",$str,$matches);
如果匹配,应该在$matches[1]中就是结果

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template