public class stringcontains{
public static void main(string args){
string info = '發布到首頁後,一旦被管理員撤下,3天內將不能再發布到首頁';
boolean b = info.contains("管理員撤下");l
system.out.println(b);
//查詢返回指定字元
int c = info.contains(97);
system.out.println(c);
//查詢返回指定字元,從第20個字元開始查詢,實際位置為20+查到的位置
int c = info.contains(97,20);
system.out.println(c);
public class stringcontains{
public static void main(string args){
string info = '發布到首頁後,一旦被管理員撤下,3天內將不能再發布到首頁';
//查詢「首「在字串中最後一次出現的位置
int b = info.lastindexof("首");
system.out.println(b);
//查詢「首「在字串中最後一次出現的位置,從30個位元組出開始查詢
int c = info.lastindexof("首",30);
system.out.println(b);
String字串操作
char chars string s new string chars int len s.length 字串長度 system.out.println chars ab system.out.println s abc system.out.println len 3 char ch zhang...
C 字串string操作
相比於c語言而言,c 提供了太多的寫好了的型別和方法,其中string型別就是用起來特別方便的一種。那麼問題來了,既然有c語言的char型,為什麼還要學習string型別呢?我碰到過的也是最主要的乙個原因就是string型別更節省空間,用多少開多少,而char型別的陣列就不是了,必須開最大值。其次還...
String字串的操作
字串的常用操作 author nadech name my name is nadech print name.count a print name.capitalize print name.center 50,print name.ljust 50,print name.rjust 50,pri...