Java – add string value
•
Java
Here is the Java problem:
Solution
String str = "abcde";
String str = "abcde"; System.out.println(getIncrementedString(str));
yield
//This code will provide the next char in Unicode order
public static String getIncrementedString(String str){
StringBuilder sb = new StringBuilder();
for(char c:str.tocharArray()){
sb.append(++c);
}
return sb.toString();
}
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码
