+ 1
Pls,Explain me about it.System.Text.RegularExpressions.Regex.How to use conditions it.?
Regex reg = new Regex();
4 Respostas
+ 1
refer this link buddy
http://www.ocpsoft.org/opensource/guide-to-regular-expressions-in-java-part-1/
+ 1
Thank u all Fri
+ 1
Have a look at this link. Here they explain how regex can be used in c#
https://www.dotnetperls.com/regex
Regex regex = new Regex(@"\d+");
Match match = regex.Match("Dot 55 Perls");
if (match.Success)
{
Console.WriteLine(match.Value);
}
0
Thank u,sneeze