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 中提出的 RegExp 是:
$s = ',,[[,2thesecretoflife'; $r = preg_match('/^,,\\[\\[,2/', $s); if ($r) { echo 'works'; }
基本上,您必须对 s 进行双重转义[才能正确解释它们。我确信您使用的任何语言都会相似。
[