正则表达式匹配所有字符,包括回车

时间:2015-07-13 15:38:01

标签: php regex preg-match preg-match-all

什么是匹配所有字符(.*)的正则表达式还有回车符?

1 个答案:

答案 0 :(得分:1)

  

正则表达式匹配所有字符(。*)还有回车符吗?

(?s).*

请参阅demo

(?s)标记使.匹配任何字符,甚至是换行符。

也可以在第二个分隔符后设置标志:

$re = "/.*/s"; 

请参阅another demo