字串的常用方法

2021-08-21 18:19:40 字數 1561 閱讀 1326

常用的方法

這幾個相似的方法的分別:

substring() - 提取字串中兩個指定的索引號之間的字元

slice() - 提取字串的片斷,並在新的字串中返回被提取的部分

split() - 是將字串分割為陣列

與正則相關的三個字串方法

//常用的例子:

var ret = 'callback()';

var reg = /^\w+\(()\)$/;

var mathes = ret.match(reg)

console.log(mathes)

mathes = ["callback()",

""]

var str = 'abcdefgahijklmnaopqarsta'

var newstr = str.replace(/a/g,'1')

console.log(newstr)

方法描述

indexof()

返回指定字元創第一次出現的位置

lastindexof()

返回指定字串最後一次出現的位置

substr()

從起始索引號提取字串中指定數目的字元。

substring()

提取字串中兩個指定的索引號之間的字元

slice()

提取字串的片斷,並在新的字串中返回被提取的部分

charat()

返回在指定位置的字元

charcodeat()

返回在指定的位置的字元的 unicode 編碼

concat()

連線字串

split()

把字串分割為字串陣列

match()

找到乙個或多個正規表示式的匹配

replace()

替換與正規表示式匹配的子串

search()

檢索與正規表示式相匹配的值

非常用方法

var txt = "hello world!"

//不用的方法

txt.big()

txt.small()

txt.bold()

txt.italics()

txt.blink() //顯示閃動字串

txt.fixed() //以打字機文字顯示字串

txt.strike() //使用刪除線來顯示字串

txt.fontcolor("red")

txt.fontsize(16)

//可以嘗試用的方法

txt.tolowercase()

txt.touppercase()

txt.sub() //把字串顯示為上標

txt.sup() //把字串顯示為下標

txt.anchor('aaa') //建立乙個文字錨點- txt

txt.link("")

字串常用方法

字串常用方法 public class 3 abc 5 int indexof string str 輸出字串2在字串1中的下標 system.out.println hello crl endswith crl 6 6int indexof string str,int fromindex 在字串...

字串常用方法

1 判斷型別 9 方法說明 string.isspace 如果 string 中只包含空格,則返回 true string.isalnum 如果 string 至少有乙個字元並且所有字元都是字母或數字則返回 true string.isalpha 如果 string 至少有乙個字元並且所有字元都是字...

字串常用方法

字串常用方法 method 描述charat 返回指定索引位置的字元 charcodeat 返回指定索引位置字元的 unicode 值 concat 連線兩個或多個字串,返回連線後的字串 fromcharcode 將字元轉換為 unicode 值 indexof 返回字串中檢索指定字元第一次出現的位...