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