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.
重複の可能性: テキストを引用符で囲む
私は文字列 ["xx.xx.xx.xx"] を持っています。引用符の中にあるものだけを返したいのです。
キャプチャ グループで正規表現を使用できます。
if (preg_match('/\["(.*?)"\]/', '["xx.xx.xx.xx"]', $matches)) { echo $matches[1]; }