Login
Remember
Register
Ask a Question
What is Name matched sub expressions in Regular expressions?
0
votes
asked
Aug 17, 2023
in
ReactJS
by
GeorgeBell
What is Name matched sub expressions in Regular expressions?
regular-expression
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 17, 2023
by
GeorgeBell
Matched string captured by sub expression by using name. Let you access this it by name or number
syntax : (?<givne_name> subexpression)
Ex : (?<Given_Name> \w+) -> Capturing method syntax
Console.WriteLine(Match.Goups["given_name"].value);
...