I would like to know whether there is any method in C# that takes out all the content of a string until the first number is encountered. Example:

string myString = "USD3,000";
myString = SomeMethod(myString, [someparameters]);
myString -> "3,000"
link|improve this question

70% accept rate
1  
Regular expressions. – BoltClock May 26 '11 at 11:41
Cheat sheet: regexlib.com/CheatSheet.aspx and Quick Regex tester: derekslager.com/blog/posts/2007/09/… – James McCormack May 26 '11 at 12:13
feedback

4 Answers

up vote 7 down vote accepted

Not inbuilt, but you could just use either a regex, or IndexOfAny:

static void Main()
{
    string myString = "USD3,000";
    var match = Regex.Match(myString, @"[0-9].*");
    if(match.Success)
    {
        Console.WriteLine(match.Value);
    }
}

or

static readonly char[] numbers = "0123456789".ToCharArray();
static void Main()
{
    string myString = "USD3,000";
    int i = myString.IndexOfAny(numbers);
    if (i >= 0)
    {
        string s = myString.Substring(i);
        Console.WriteLine(s);
    }
}
link|improve this answer
1  
@Marc that regex would return a match for for instance USD3a000 would be 3a000 – Oskar Kjellin May 26 '11 at 11:45
2  
@Oskar: that's exactly what the question is asking: "method that takes out all the content of a string until the first number is encountered" => get first number and match all the rest – Paolo Tedesco May 26 '11 at 11:46
1  
@Paolo That's true. I just assumed that he wanted the first number – Oskar Kjellin May 26 '11 at 11:47
1  
@Marc As I stated above, I misread his question. Figured he only wanted to get the numbers – Oskar Kjellin May 26 '11 at 11:48
Improvement? Regex.Match(myString, @"\d[\d\.,]*"); – James McCormack May 26 '11 at 11:49
show 8 more comments
feedback

I don't think there are any built-in string methods to do that. However you can tweak the code given in the below post and modify it to achieve what you want:

What is the most efficient way in C# to determine if a string starts with a number and then get all following numbers up until the first non-numeric character?

link|improve this answer
feedback

You can do it with Regular Expressions.

string myString = "USD3,000";
Regex reg = new Regex("[A-Za-z]");
myString = reg.Replace(myString, "");
link|improve this answer
Regex.Match is more suitable here – James McCormack May 26 '11 at 11:51
thanks but it works just if there are letters. It does not work with special charachters – CiccioMiami May 26 '11 at 11:51
@"[^\d]*" would be a more suitable regex – Oskar Kjellin May 26 '11 at 11:59
feedback
    string str = "ddd3,000.00ss";

    string stripped = new Regex(@"(\d{1,3},(\d{3},)*\d{3}(\.\d{1,3})?|\d{1,3}(\.\d{3})?).*").Match(str).Value;

    Console.WriteLine(stripped);

Output:

3,000.00ss

Should match decimal and integer number with or without thousand separators and with or without maximum of 3 decimal places.

link|improve this answer
Really ugly regex – Oskar Kjellin May 26 '11 at 11:59
yes and it fails on "b2b_index_3,000.00ss" like the others giving "2b_index_3,000.00ss", I should revise it a bit... unfortunately there is no easy method to avoid that... but probably noone tried this scenario, yet the answer is accepted... – Marino Šimić May 26 '11 at 12:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.