我有这个字符串:
id
我只需要$config['website'] = 'Devloooo';
(没有撇号)。
只有撇号内的这个文字。
我正在网上搜索和寻找其他正则表达式并按http://regexr.com/进行尝试,但我无法弄清楚它应该是什么样子
我现在得到的只是Devloooo
答案 0 :(得分:2)
正则表达式为\].*'(.*)'
这是你找到它的程序
Matcher m = (Pattern.compile("\\].*'(.*)'")).matcher("$config['website'] = 'Devloooo';");
while(m.find()) {
System.out.println(m.group(1));
}
控制台输出:
Devloooo