可以使用 Python 的 replace
方法来替换 .
为 [.]
,实现方式如下:
def defangIPaddr(address: str) -> str:
return address.replace(".", "[.]")
# 示例测试
print(defangIPaddr("1.1.1.1")) # 输出:"1[.]1[.]1[.]1"
print(defangIPaddr("255.100.50.0")) # 输出:"255[.]100[.]50[.]0"
这个方法时间复杂度为 O(n),其中 n 是 IP 地址的长度,非常高效。