How to Take Numbers from a String in C#

Consider following is my string.

  1. String myString = "MyString1";   
And I need to take out the number 1 from the value MyString1. What will we do?

To do this we can use Regex class in C#. Following is the code to achieve the same.
  1. myString = Regex.Match(myString , @"\d+").Value;   
Once you done and Run, you will get value 1 in the variable myString

Kindly see my code snippets here.

I hope someone found this useful. Happy Coding.

Kindest Regards
Sibeesh Venu