Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の件名で text0 と text4 を取得するにはどうすればよいですか。
text0{tex1{text2}text3}text4
括弧の外側のコンテンツが必要な場合は、これを使用できます。
preg_match_all('~(?<out>[^{]++)|({(?>[^{}]++|(?2))*+})~', $string, $matches); print_r($matches['out']);