Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

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

1 Answer

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)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...