java中String物件的常用方法

2021-07-04 12:23:32 字數 1013 閱讀 9643

public class test 

system.out.println("");

string str1=new string(c);

string str2=new string(c,1,6);

system.out.println(str1+" "+str2);

system.out.println(str1.charat(5));//顯示指定位置的字元

int temp;

temp=str1.indexof("f");//找字元

if(temp!=-1)

string str3=" dsljjf ";

system.out.println(str3.trim());//去掉左右的空白

system.out.println(str3.trim().substring(2, 5));//擷取字串

/*string s="hello#world";

string s1=s.split("#");//將字串安設定的字元分割

for(string a:s1)

string str6="**********fkksdfldsf*******";

system.out.println(str6.startswith("**"));//字串的開頭和末尾

string str7=new string("hello");

string str8=new string("hello");

system.out.println(str7.equals(str8));//判斷兩個字串的內容是否相等,equalsignorecase是不區分大小寫

system.out.println(str7.equalsignorecase(str8));

string str9=new string("askllll");

system.out.println(str9.replaceall("l", "q"));

}}

java中string物件中的split方法的使用

我們都知道string物件中的split方法,是用來按照根據匹配給定的正規表示式來拆分此字串。split方法有兩種 一種為 public stringsplit stringregex 另一種為 public stringsplit stringregex,intlimit 但是在實際應用中我們常用...

C 中的常成員和常物件函式

1 建立物件時新增const關鍵字,這個物件就不可再修改,就有了常屬性,就意味著整個物件中的所有東西都不能修改。我們知道被const修飾的物件一旦被初始化了就不可改變,來看乙個例子 include include using namespace std class dog void show obj...

JavaScript中的String物件

string物件提供的方法用於處理字串及字元。常用的一些方法 charat index 返回字串中index處的字元。indexof searchvalue,fromindex 該方法在字串中尋找第一次出現的searchvalue。如果給定了fromindex,則從字串內該位置開始搜尋,當searc...