Pls,Explain me about it.System.Text.RegularExpressions.Regex.How to use conditions it.? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pls,Explain me about it.System.Text.RegularExpressions.Regex.How to use conditions it.?

Regex reg = new Regex();

12th Sep 2017, 10:59 AM
Lin N
Lin N - avatar
4 Answers
+ 1
Thank u all Fri
12th Sep 2017, 12:04 PM
Lin N
Lin N - avatar
+ 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); }
15th Sep 2017, 10:05 PM
sneeze
sneeze - avatar
0
Thank u,sneeze
16th Sep 2017, 1:08 AM
Lin N
Lin N - avatar