字符串之替换字符串中连续出现的指定字符串
【摘要】 题目:
字符串之替换字符串中连续出现的指定字符串
给定3个字符串str from to已知from字符串无重复字符,把str中所有from的子串全都替换成to字符串,连续出现from只需要换成一个to就可。
例如:
str="123adc" from = "adc" to ="4567" 返回1234567
str="123" from = "adc" t...
题目:
字符串之替换字符串中连续出现的指定字符串
给定3个字符串str from to已知from字符串无重复字符,把str中所有from的子串全都替换成to字符串,连续出现from只需要换成一个to就可。
例如:
str="123adc" from = "adc" to ="4567" 返回1234567
str="123" from = "adc" to ="4567" 返回123
str="123adcabc" from = "adc" to ="X" 返回123X
实现代码:
-
package com.chenyu.string.cn;
-
-
public class RaplaceString {
-
-
public static void main(String[] args) {
-
-
String target = "000abcabc123abc456abc789abcabc";
-
String from = "abc";
-
String to = "def";
-
String result = replace(target, from ,to);
-
System.out.print("result:" + result);
-
-
}
-
-
-
public static String replace(String target, String from, String to) {
-
-
if (target == null || "".equ
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/53401100
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)