Java基礎方法1 字串

2021-09-20 18:59:50 字數 1735 閱讀 5618

##字串合集

public

static

void

main

(string[

] args)

system.out.

println

(sum)

; system.out.

println

(str)

;//完整輸出字串

system.out.

println

(str.

charat(6

));//指定下標字元輸出

system.out.

println

(str.

length()

);//字串長度

system.out.

println

(str.

indexof

("o"))

;//字元開頭位置查詢 字串中沒有即indexof(string)=-1;

system.out.

println

(str.

lastindexof

("o"))

;//字元末尾位置查詢

system.out.

println

(str+

""+arr)

;//字串相連

system.out.

println

(str.

substring(3

));//擷取下標之後的串

system.out.

println

(str.

substring(0

,3))

;//擷取指定下標之間的串

system.out.

println

("字串原來的長度:"

+arr.

length()

);system.out.

println

("去掉空格後的長度:"

+arr.

trim()

.length()

);system.out.

println

(str.

replace

("l"

,"l"))

;//字串中"l"替換成"l"後返回的新字串;

system.out.

println

("字母串str是以'he'開頭的嗎?"

+str.

startswith

("he"))

;//判斷字串的開頭與結尾(endswith)

//字串比較1.equals()方法2.equalsignorecase()第二種不區分大小寫

//用法:str.equals(string otherstr) 兩種方法相同

system.out.

println

(str.

compareto

(arr));

//按字典順序比較str與arr的大小

system.out.

println

(str.

touppercase()

);//大小寫改為大寫,相反:tolowercase

system.out.

println

(str.

tostring()

);}

Java基礎(2 字串)

public char charat int index 返回字串中第index個字元 public int length 返回字串的長度 public int indexof string str 返回字串中出現 str 的第乙個位置 public int indexof string str i...

java自學之旅(1)字串常用方法

package test.string 字串常用方法 1.str.legth 獲取字串長度 2.str.indexof string s 用於返回字串s在指定字串中首次出現的索引位置 3.str.lastindexof string str 用於返回字串s在指定字串中最後一次出現的索引位置 4.st...

03 字串 基礎

1.string s new string abc 此時記憶體有兩個物件 stringpool裡 abc 堆空間 new string abc string s1 abc 因stringpool裡已經有 abc 物件,所以不會再產生,此時記憶體有兩個物件 string s2 new string a...