Java学习----字符串函数

1.String

string类是最终类,不可以有子类

package com.demo.pkg1;

public class TestString {
    public static void main(String[] agrs) {
        // 构造字符串
        String name = "  hello world  ";
        String s1 = new String("aaa");

        // 长度
        int x = name.length();
        // 字符位置
        char c = name.charAt(3);
        // 子串
        String s = name.substring(5,8);
        // 去掉空格
        String ss = name.trim();

        System.out.println(x);
        System.out.println(c);
        System.out.println(s);
        System.out.println(ss);
    }
}

15 e lo hello world

2.StringBuffer(可变)

public class TestString {
    public static void main(String[] agrs) {
        StringBuffer s = new StringBuffer("hello");
        s.append(" world"); // string类型没有append
        System.out.println(s);
        System.out.println(s.toString()); // 转成string
    }
}
hello world

3.StringBuilder

StringBuilder线程不安全,StringBuffer线程安全。单线程使用StringBuilder,可以更快一点。

时间: 2024-10-27 08:15:31

Java学习----字符串函数的相关文章

JAVA中字符串函数subString的用法小结

本篇文章主要是对JAVA中字符串函数subString的用法进行了详细的介绍,需要的朋友可以过来参考下,希望对大家有所帮助 String str; str=str.substring(int beginIndex);截取掉str从首字母起长度为beginIndex的字符串,将剩余字符串赋值给str: str=str.substring(int beginIndex,int endIndex);截取str中从beginIndex开始至endIndex结束时的字符串,并将其赋值给str; demo:

java截取字符串函数

substring public String substring(int beginIndex)返回一个新的字符串,它是此字符串的一个子字符串.该子字符串始于指定索引处的字符,一直到此字符串末尾. 例如: "unhappy".substring(2) returns "happy" "Harbison".substring(3) returns "bison" "emptiness".substring(

Python学习-字符串函数操作2

字符串函数操作 find( sub, start=None, end=None):从左到右开始查找目标子序列,找到了结束查找返回下标值,没找到返回 -1 sub:需要查找的字符串 start=None:开始查找的起始位置,默认起始的位置为可以省略(0) end=None:结束查找的位置,可以省略,默认为字符串的总长度len(str) str = 'liiuwen' m = str.find('i') n = str.find('i',4); print(m); // 1 print(n); //

Python学习-字符串函数操作3

字符串函数操作 isprintable():判断一个字符串中所有字符是否都是可打印字符的. 与isspace()函数很相似 如果字符串中的所有字符都是可打印的字符或字符串为空返回 True,否则返回 False str1 = 'gheruiv'; str2 = '\n\t'; print(str1.isprintable()); //True print(str2.isprintable()); //False istitle():判断一个字符串中所有单词的首字母是不是大写 返回值为布尔类型,T

Python学习-字符串函数操作1

字符串的函数操作 capitalize():可以将字符串首字母变为大写 返回值:首字符大写后的新字符串 str = "liu" print(str.capitalize()); // Liu print(str); // liu lower():可以将字符串每个字符都变为小写 casefold():作用于lower() 相同,不同点是比它的功能更全面,可以将一些未知的变为小写 返回值:全部变为小写后的新字符串 str = "LIU" print(str.lower(

Java学习----日期函数

Date   Calendar public class TestDate { private Date date; Calendar calendar; public TestDate() { //date = new Date(); //Date date2 = new Date(); //System.out.println(date.after(date2)); // date 是否比 date2晚 false calendar = Calendar.getInstance(); Sys

Java学习----集合函数

1.List----有序的collection(序列) 与数组的不同:数据类型可以相同可以不同,数组的长度是预先定义好的,集合的长度也是预先定义好的,但是长度会随着元素的增加而增加 ArrayList LinkedList Vector 2.Set 3.Map

Java学习----Math函数

public class TestMath { public static void main(String[] args) { System.out.println(Math.E); System.out.println(Math.PI); System.out.println(Math.abs(-3.5)); System.out.println(Math.ceil(3.5)); // >= System.out.println(Math.floor(3.5)); // <= System

Mysql学习笔记(四)字符串函数

PS:终于看完了字符串函数,心都快碎了...涉及的函数真是太多了...感觉这里的字符串函数和JAVA里的基本都差不多了...基本上算是掌握了,但是想全记住那是不太可能的... 学习内容: 字符串函数的掌握和应用.. ASCii(str) 返回字符串的最左边的ascii码值..如果str为NULL,那么返回NULL...如果字符串为0,那么返回也为0... mysql>select ascii('2'); mysql>select ascii('dx'); ORD(str)函数 如果字符串最左边