关于提取字符串的

WBOY
Release: 2016-06-23 14:12:23
Original
703 people have browsed it

提取  中文日期格式的  2013年6月5日  中的6 ,
用正则表达式怎么写,
用php怎么写?


回复讨论(解决方案)

$s='2013年6月5日';
preg_match('/(\d+)月/',$s,$m);
echo $m[1];

提取  中文日期格式的  2013年6月5日  中的6 ,
用正则表达式怎么写,
用php怎么写?
如果 再精确点  我的字符串是这样的 里面有两个月   2013年06月8日-11日领导者演讲汞柱与口才技巧月 
我现在就是要指定是  年和月之间的数字?怎么写

$s='2013年6月5日';
preg_match('/(\d+)月/',$s,$m);
echo $m[1];

如果 再精确点  我的字符串是这样的 里面有两个月   2013年06月8日-11日领导者演讲汞柱与口才技巧月 
我现在就是要指定是  年和月之间的数字?怎么写

preg_match('/年(\d+)月/',$s,$m);

preg_match('/年(\d+)月/',$s,$m);
谢谢

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