首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java正则表达式找到特定格式语句的关键字

2012-09-11 
java正则表达式找出特定格式语句的关键字中文问句语句分析需要提取问句中的关键字例子1String reg((?(

java正则表达式找出特定格式语句的关键字
中文问句语句分析需要提取问句中的关键字
例子1

String reg="((?<=(是))[^的还呢]+)";  Pattern pattern =Pattern.compile(reg);Matcher m=pattern.matcher("这种产品是红色的还是蓝色的啊?");while(m.find()){   System.out.println(m.group());//输出“红色”“蓝色”}m=pattern.matcher("这种产品是水货还是正品呢?");while(m.find()){   System.out.println(m.group());//输出“水货”“正品”}





热点排行