Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ad7f2c24e6
1 changed files with 10 additions and 0 deletions
|
@ -280,6 +280,16 @@ public class Algorithms {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String extractOnlyIntegerSuffix(String s) {
|
||||||
|
int k = 0;
|
||||||
|
for (; k < s.length(); k++) {
|
||||||
|
if (Character.isDigit(s.charAt(k))) {
|
||||||
|
return s.substring(k);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
public static String extractIntegerSuffix(String s) {
|
public static String extractIntegerSuffix(String s) {
|
||||||
int k = 0;
|
int k = 0;
|
||||||
for (; k < s.length(); k++) {
|
for (; k < s.length(); k++) {
|
||||||
|
|
Loading…
Reference in a new issue