I'm "translating" perl script to C# and I came across this operator: =~
Is there anything similar in C#?
It's my first time with perl, so it's pretty much a shot in the dark.
Thanks
I'm "translating" perl script to C# and I came across this operator: =~
Is there anything similar in C#?
It's my first time with perl, so it's pretty much a shot in the dark.
Thanks
Regex.IsMatch
should be same as =~
in Perl. As I read from the below article its just a regular expression match.