gpt4 book ai didi

java - 如何转换ip字符串xxx.xxx.xxx.xxx :xxxxx to xxx. xxx.xxx.xxx?

转载 作者:行者123 更新时间:2023-12-01 06:51:09 26 4
gpt4 key购买 nike

我从我的服务器获取此 IP,例如:

"/177.127.101.68:53964"
"/201.80.15.100:54263"
"/177.67.38.54:51309"

我需要它就像“177.127.101.68”,我打算删除最后5个字符串字符,但有时它会出现“/186.213.186.40:4625”,所以我不知道到底该怎么做。 .有什么办法可以做到这一点吗?

最佳答案

使用 String 类的 split()substring() 方法是一种方法:

String ip = "/177.127.101.68:53964";
String whatYouWant = ip.split(":")[0].substring(1);

请参阅 split 的 Javadocs和 substring 。在我看来,您会发现自己经常使用它们。

关于java - 如何转换ip字符串xxx.xxx.xxx.xxx :xxxxx to xxx. xxx.xxx.xxx?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28070871/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com