Answers for "using capture groups in find and replace vscode"

0

using capture groups in find and replace vscode

// Given some regular expression
(?<capture_group>...)...(?<another_capture_group>...)
// You can reference them in your replace by using
$1, $2,...
Posted by: Guest on April-01-2020

Code answers related to "using capture groups in find and replace vscode"

Browse Popular Code Answers by Language