I read a c# code, I don't understand regex pattern.
string name = Regex.Replace(opts[2] ?? "", @"<<set:[A-Z]+>>", "");
What does @<<set:[A-Z]+>>
mean?
Is there pattern using <<set:
?
I understand this sentence that if opts[2]
is <<set:anithing>>something
, name
set something
.
Is it correct?