有人知道我如何获得最后的数字192.168.1.180
示例:我要从此IP地址中提取192.168.1.180。
预先感谢
答案 0 :(得分:4)
好吧,如果该IP地址是一个字符串,则可以始终使用split函数。
let str = "192.168.1.180";
let x = str.split(".")[3];
// where str is the ip and x is the last part you want to extract
console.log(x)
答案 1 :(得分:0)
使用:
let ip = '192.168.1.180';
let last = ip.split('.')[3];
console.log(last); // '180'