gpt4 book ai didi

android - 允许 ip 的输入字段

转载 作者:行者123 更新时间:2023-11-29 17:54:42 25 4
gpt4 key购买 nike

我想制作一个文本字段,它只允许我以 x.x.x.x 格式输入 IP 地址其中 x 不能超过 255。我发现了一些编码,它只允许我达到 x.x,你能帮我解决这个问题吗?任何建议将不胜感激。

最佳答案

使用模式匹配器

public final static boolean isValidIp(CharSequence target)
{
if (target == null) return false;
else return android.util.Patterns.IP_ADDRESS.matcher(target).matches();
}

关于android - 允许 ip 的输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20287333/

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