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
1.2k views
in Technique[技术] by (71.8m points)

c# - How to extract the IP of the string using RegEx

How to extract the IP of the string below using RegEx?

... sid [1544764] srv [CFT256] remip [10.0.128.31] fwf []...

I tried the code below but did not return the expected value:

string pattern = @"remip [.]";
MatchCollection mc = Regex.Matches(stringToSearch, pattern );


Thanks in advance.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Try this:

@"remip [(d+.d+.d+.d+)]"

To clarify... the reason yours doesn't work is because you are only matching . inside the [ and ]. A single . matches only a single character. You could add a * (zero or more) or a + (one or more) to make it work. In addition, surrounding it with parenthesis: ( and ), means you can extract just the IP address directly from the second item in the MatchCollection.


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