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.
APIからフィードを取得しています。ここで、,, [[、2で始まる行を取得したいと思います。どうすればそれができますか?
PHPで思いついた正規表現は次のとおりです。
$s = ',,[[,2thesecretoflife'; $r = preg_match('/^,,\\[\\[,2/', $s); if ($r) { echo 'works'; }
[基本的に、正しく解釈されるようにするには、sをダブルエスケープする必要があります。使用している言語はどれも似ていると思います。
[