↧
Best way to do this?
Figured out a simple solution:Regex regex = new Regex("^9+$");if (regex.IsMatch(MyVar)) { MyVar = "9999999999"; }
View ArticleBest way to do this?
Welcome to the MSDN Forums.You can do something like following:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program {...
View ArticleBest way to do this?
A regular expression checker with [^9] maybe (returns something if different than 9)?Cristian.
View ArticleBest way to do this?
Hello,I get a string as input that is a series of numbers.If that string is any series of nines (one or more) then I must make the string equal to ten nines.For example:If string == "99998" then leave...
View Article