Posts by Leandro Blanes • 31 points
2 posts
-
3
votes1
answer64
viewsA: Regular expression in C# - Regex accepting numbers with DDD and accepting numbers without DDD
Regex reg = new Regex(@"(\([0-9]{2}\)|)[0-9]{4,5}-[0-9]{4}"); reg.isMatch("(12)12345-1234"); //retorna true reg.isMatch("(12)1234-1234"); //retorna true reg.isMatch("12345-1234"); //retorna true…
c#answered Leandro Blanes 31 -
0
votes1
answer419
viewsA: Pie Chart by code line c#
Hello, I know it’s been a while since you posted and warned me via face but only now I could really look at it. In this example you are creating a new graphic and adding in the collection, you could…
graphicanswered Leandro Blanes 31