你试试这个正则表达式 \b( |\n).*?((大学)|(公司))\b
我给你一个Java语言的例子,你看看吧.
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class AAA {
public static void main(String[] args) {
String s=" 简历 北京大学\n联想公司";
String regex="\\b( |\n).*?((大学)|(公司))\\b";
Pattern p=Pattern.compile(regex);
Matcher m=p.matcher(s);
while(m.find()){
System.out.println(m.group());
}
}
}
运行结果
北京大学
联想公司
因为"联想公司"前有一个换行符所以"联想公司"前有一个空行
不知道是不是你要的效果.