String类的常见方法的使用案例

        //使用指定的字符串替换当前字符串中指定的内容
        //将helloworld中的o替换为a
        String s="HelloWorld";
        String ss=s.replace("o","a");
        System.out.println("替换前:"+s);
        System.out.println("替换后:"+ss);

        //截取当前字符串中指定的内容,保留HelloWorld中0-w之间的内容,不包括w,s.indexOf("w")表示w在字符串s中的下标,下标是从0开始的;
        s=s.substring(0, s.indexOf("W"));
        System.out.println("截取以后的值:"+s);

        //将字符串转为大写或者小写
        System.out.println("将s变量中包含的字符串转为小写:"+s.toLowerCase());
        System.out.println("将s变量中包含的字符串转为大写:"+s.toUpperCase());

        //忽略大小写的比较
        System.out.println("忽略大小写的比较::"+"Hello".equalsIgnoreCase("HELLO"));

算当前字符串中有多少个指定字符的案例

public static void main(String[] args){

        String s1="1110001110111111asdas1111csdcsdc" +
                "222111111111111111111121222";
        int totol=count1(s1, "1");
        System.out.println(totol);
    }
    public static int count1(String s1,String s2){
        String s=s1;

        int count =0;

        while(true){
            if (s.indexOf(s2)!=-1) {//如果找到s2
                count++;
                s=s.substring(s.indexOf(s2)+1);//将第一次找到的dest截掉,保留后面的部分,继续查找
                continue ;
            }else{
                break;
            }
        }
        return count;
    }
时间: 2024-09-30 18:49:25

String类的常见方法的使用案例的相关文章

关于JAVA的String类的一些方法

一.得到字符串对象的有关信息 1.通过调用length()方法得到String的长度. String str=”This is a String”; int len =str.length(); 2.StringBuffer类的capacity()方法与String类的 length()的方法类似,但是她测试是分配给StringBuffer的内存空间的大小,而不是当前被使用了的内存空间. 3.如果想确定字符串中指定字符或子字符串在给定字符串的位置,可以用 indexOf()和lastIndexO

【java】String类的基本方法

Java的String类基本方法 一.构造函数 函数 返回值 作用 String(byte[] bytes) String 通过byte数组构造字符串对象 String(char[] chars) String 通过char数组构造字符串对象 String(String string) String 拷贝一个值为string的字符串对象 String(StringBuffer buffer) String 通过StringBuffer构造字符串对象 二.String类的基本方法 函数 返回值 作

了解String类的intern()方法

相信绝大多数的人不会去用String类的intern方法,打开String类的源码发现这是一个本地方法,定义如下: public native String intern(); 文档告诉我们该方法返回一个字符串对象的内部化引用. public String intern()返回字符串对象的规范化表示形式. 一个初始时为空的字符串池,它由类 String 私有地维护. 当调用 intern 方法时,如果池已经包含一个等于此 String 对象的字符串(该对象由 equals(Object) 方法确

Servlet 中为多项选择题判分---String类的indexOf()方法妙用

首先来看一下String类的indexOf()方法的用法: 1 public class FirstDemo1 { 2 /** 3 *API中String的常用方法 4 */ 5 // 查找指定字符串是否存在 6 public static void main(String[] args) { 7 String str1 = "abcdefghijklmnabc"; 8 // 从头开始查找是否存在指定的字符 9 System.out.println(str1.indexOf("

ASP.Net string 类的扩展方法 [转]

string 类的扩展方法列表(基本相同于 IEnumerable<T> 接口的成员列表): Aggregate<>     //累加 All<>        //是否都满足条件 Any<>        //是否有一个满足条件 AsEnumerable<>  // AsParallel<>    // AsQueryable<>    // Average<>      //平均值 Cast<>

String类的intern()方法

public native String intern(); 这个是在String类源码中申明的一个方法,是一个本地方法,返回的是一个String对象的引用.先看一下代码: String s1="123"; String s2 = new String("123"); System.out.println(s1==s2);//false System.out.println(s1==s2.intern());//true s1==s2结果为false,这个不再详述.

String类的一些方法

String 类有以下方法: startsWith(String prefix) boolean java.lang.String.startsWith(String prefix) Tests if this string starts with the specified prefix. Parameters: prefix the prefix. Returns: true if the character sequence represented by the argument is a

测试String类的intern方法

<pre name="code" class="java">package com.ckw.mianshi; /** * 测试String类的intern方法 * @author Administrator *intern():返回一个字符串,内容与此字符串相同,但它保证来自字符串池中. */ public class StringOfIntern { public static void main(String[] args) { /** * 例1 *

java.lang.String 类的所有方法

java.lang.String 类的所有方法 方法摘要 char charAt(int index) 返回指定索引处的 char 值. int codePointAt(int index) 返回指定索引处的字符(Unicode 代码点). int codePointBefore(int index) 返回指定索引之前的字符(Unicode 代码点). int codePointCount(int beginIndex, int endIndex) 返回此 String 的指定文本范围中的 Un