有了字符串,我如何用 y 替换所有单词、特殊字符、数字、x 之后的下一个内容。
示例:输入:
String test = "Hello @\"Thomas Anderson\" how are you? Today is 06/13/2013 com month day year !! \"example of date\"";
String x = "com";
String y = "word";
想要的输出:
String test = "Hello @\"Thomas Anderson\" how are you? Today is 06/13/2013 com word word word word word";
规则
特殊符号的连接算作 1 (ag !!, @!? ...);
引号内的字符串也算作 1 个单词(ag "yahooo ohoo hoho" ...);
如果 x 多于 1,则将第一个视为单词,并将其后的所有其余部分视为单词;