IP 地址无效化
给你一个有效的 IPv4 地址 address,返回这个 IP 地址的无效化版本。
所谓无效化 IP 地址,其实就是用 "[.]" 代替了每个 "."。
示例 1:
输入:address = "1.1.1.1"
输出:"1[.]1[.]1[.]1"
示例 2:
输入:address = "255.100.50.0"
输出:"255[.]100[.]50[.]0"
代码:
#include<iostream>
#include<cstring>
using namespace std;
int main(){
string s;
cin>>s;
int len =s.length();
for (int i = 0; i < len; i++)
{
int t = s.find(".",i);
s.replace(t,1,"[.]");
i=t+1;
}
cout<<s<<endl;
}
find(str, pos )
find(str, pos ,n)
因上求缘,果上努力~~~~ 作者:图神经网络,转载请注明原文链接:https://www.cnblogs.com/BlairGrowing/p/12803844.html