Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
847 views
in Technique[技术] by (71.8m points)

.net - Getting number from a string in C#

I am scraping some website content which is like this - "Company Stock Rs. 7100".

Now, what i want is to extract the numeric value from this string. I tried split but something or the other goes wrong with my regular expression.

Please let me know how to get this value.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use:

var result = Regex.Match(input, @"d+").Value;

If you want to find only number which is last "entity" in the string you should use this regex:

d+$

If you want to match last number in the string, you can use:

d+(?!D*d)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...