正则表达式在更宽的字符串中获取撇号内的字符串

时间:2017-07-05 16:22:44

标签: php regex expression

我有这个字符串:

id

我只需要$config['website'] = 'Devloooo'; (没有撇号)。

只有撇号内的这个文字。

我正在网上搜索和寻找其他正则表达式并按http://regexr.com/进行尝试,但我无法弄清楚它应该是什么样子

我现在得到的只是Devloooo

1 个答案:

答案 0 :(得分:2)

正则表达式为\].*'(.*)'

这是你找到它的程序

    Matcher m = (Pattern.compile("\\].*'(.*)'")).matcher("$config['website'] = 'Devloooo';");
    while(m.find()) {
        System.out.println(m.group(1));
    }

控制台输出:

Devloooo