摘要:
解题思路: Character.isDigit()方法和String.matches() public static void main(String[] args) { String str = "123458766"; // System.out.println(str.matches("[0- 阅读全文
摘要:
解题思路: 1.利用StringBuffer/StringBuilder 的内置方法reverse()进行反转。这应该是最简单的方法了。 public static String reversel(String str) { return new StringBuilder(str).reverse 阅读全文
摘要:
1.解题思路: 利用string的IndexOf()和lastIndexOf()方法,如果字符串中一个字符只出现一次,那么Indexof()和lastIndexOf()肯定指向同一下标。 答案如下: public class demo { public static void main(String 阅读全文
摘要:
以下是我自己的的实现方式,最最最笨的方法!!! public class demo { public static void main(String[] args) { String str = "gfhgdebhjf"; char[] ch = str.toCharArray(); for(int 阅读全文