The following:
Regex.Matches("Some Text @param Some More", "(.*)(@param)(.*)")
returns
- Some Text @param Some More
- Some Text
- @param
- Some More
Is there any way to not have the first line? I cannot find any documentation on this. And, if I use online parsers, they only list the 3 groups...I would like to avoid having to code in the ignore first...