引用命名的捕獲組
你可能(或不知道)知道,你可以引用捕獲組:
$1
1
是組號。
以同樣的方式,你可以使用以下命令引用命名的捕獲組:
${name}
\{name}
g\{name}
讓我們採用前面的例子並用匹配替換匹配
The hero of the story is a ${subject}.
我們將獲得的結果是:
The hero of the story is a pretty little girl.
The hero of the story is a unicorn with an hat.
The hero of the story is a boat with a pirate flag.