How can i fetch 192.168.1.101 usin regex in java in following string ,however Bcast may be or not present
' inet addr:192.168.1.101 Bcast:192.168.1.255 Mask:255.255.255.0'
with leading space
|
|
|
Use something like this:
I really feel Abhishek Simon's answer for the regex is an overkill. You are just extracting, not validating if it is a legal IP address! For Bcast use something like below, obviously:
To get all IPs, use without the initial lookahead. You might be better of doing some string operations like splitting on |
||||
|
|
|
use Here see this snapshot, it also fetches the bcast ip
|
|||||
|
|
You can use: ([0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}) The first tagged expression will be the first ip address that appears in the expression. I often use Regular expression test sites to help troubleshoot regular expressions. |
|||
|
|