package com;
public
class
stringtest1
; string s =
newstring
( b )
; system.out.
println
( s )
; system.out.
println
("hello"
.length()
);char
c=;// 字元陣列轉化為字串
string s1 =
newstring
( c )
; system.out.
println
( s1 )
;// 只可以去掉前面的空格,不可以去掉後面的
system.out.
println
(" hou zhi cong"
.trim()
);// 比較第乙個字母相減
system.out.
println
("abc"
.compareto
("a"))
;// 布林方法 返回true 或者false
system.out.
println
("abc"
.equalsignorecase
("abc"))
;// u返回下標是2的字元
system.out.
println
("houzhicong"
.charat(2
));// [1,3)ou
system.out.
println
("houzhicong"
.substring(1
,3))
;// 判斷字首是不是123是 true
system.out.
println
("123456"
.startswith
("123"))
; system.out.
println
("houzhicong"
.endswith
("g"))
;//從3開始找,看是否有符合條件的數字
system.out.
println
("houzhicong"
.indexof
("c",3
));}
}
基本字串操作函式
strcpy p,p1 複製字串 strncpy p,p1,n 複製指定長度字串 strcat p,p1 附加字串 strncat p,p1,n 附加指定長度字串 strlen p 取字串長度 strcmp p,p1 比較字串 strcasecmp忽略大小寫比較字串 strncmp p,p1,n 比...
字串基本操作與函式
1 字串型別 char 定長字串型別,最大長度為2000個位元組。不指定長度時,預設為1個位元組。varchar2 可變字串長度,最大長度為4000個位元組,必須指定字串長度。long varchar2的加長版,最大長度為2g的位元組。但是在乙個表中,只能存在乙個long型別的字段。此字段還不能作為...
字串和字串函式
字元輸入輸出 getchar putchar ch getchar putchar ch 字串函式 字串輸入 建立儲存空間 接受字串輸入首先需要建立乙個空間來存放輸入的字串。char name scanf s name 上述的用法可能會導致程式異常終止。使用字串陣列 可以避免上述問題 char na...