[Regex] 正規表示式指南 – Regular Expression Guide

Intro

正規表示式 - Wiki

PCRE表達式全集 - Wiki


概要

最常使用(pattern)標記要搜尋的group,pattern例如使用\w, \S來定義要搜尋的目標。

以PHP使用preg_match函數範例:

preg_match('/(foo)(\w)(\w+)/', 'imfoobarbaz', $matches);
print_r($matches);exit;

Result:

Array
(
    [0] => foobarbaz
    [1] => foo
    [2] => b
    [3] => arbaz
)

Leave a Reply

Your email address will not be published. Required fields are marked *