当前位置: 技术问答>linux和unix
请问如何取出一个字符串中的IP地址,在线等,解决了立马给分!!!!!!
来源: 互联网 发布时间:2015-05-16
本文导语: 譬如 str 是 "the ip is 192.168.0.1"; 我现在不知道如何取出其中的IP地址,请高手赐教啊!!!! | yourip=`echo $str|awk '{print $4}'` | 在Perl里 $str =~ /the ip is .*/; $ip = $1; ...
譬如
str 是 "the ip is 192.168.0.1";
我现在不知道如何取出其中的IP地址,请高手赐教啊!!!!
str 是 "the ip is 192.168.0.1";
我现在不知道如何取出其中的IP地址,请高手赐教啊!!!!
|
yourip=`echo $str|awk '{print $4}'`
|
在Perl里 $str =~ /the ip is .*/;
$ip = $1;
$ip = $1;
|
什么shell?POSIX兼容的可以用:
ip=`echo ${str##* }`
ip=`echo ${str##* }`