我的数组是这样的:
"keys": [
"first name",
"second name",
"date of birth",
"name",
"tle no",
"other details"
]
我想重新排列上面的数组数据:
"keys": [
"first_name",
"second_name",
"date_of_birth",
"name",
"tle_no",
"other_details"
]
我想用java代码创建它。我该如何创建它?
答案 0 :(得分:0)
使用String.replaceAll()
方法:
for (int i = 0; i < keys.length; i++) {
keys[i] = keys[i].replaceAll(" ", "_");
}
参考:replaceAll
答案 1 :(得分:0)
如果您想要替换
_
(空格),那么只需使用string.replace(" ", "_"
)`