一我的開發一個產品,小程序從0到1,第8章 字符串

字符串或串(string)是由數字、字母、下劃線組成的一串字符。一它是編程語言中表示文本的數據類型。在程序設計中,字符串(string)爲符號或數值的一個連續序列,如符號串(一串字符)或二進制數字串(一串二進制數字)。程序員

一般以串的總體做爲操做對象,如:在串中查找某個子串、求取一個子串、在串的某個位置上插入一個子串以及刪除一個子串等。在微信小程序中,string字符串可用''或""聲明,可用length屬性獲取長度。經常使用方法可分爲查找、截取和轉換。正則表達式

9.1 查找

charAt(index) : 獲取指定位置的字符(下標index從0開始);編程

charCodeAt(index) : 獲指定的位置的字符的Unicode編碼(下標index從0開始);小程序

indexOf(searchvalue,start): 從字符串開頭向後搜索子字符串,沒有找到匹配的返回-1; searchvalue爲需檢索的字符串值, start爲開始位置,默認爲0。微信小程序

lastIndexOf(searchvalue,start):從字符串尾向前開始搜索子字符串,沒有找到匹配的返回-1; searchvalue爲需檢索的字符串值,start爲開始位置,默認爲最後一個字符處。數組

localeCompare(target): 用本地特定的順序來比較兩個字符串;微信

match(regexp): 存放匹配結果的數組;編程語言

search(searchvalue): 指定查找的字符串的起始位置; searchvalue爲查找的字符串或者正則表達式。編碼

Page({
  //字符串查找方法例子
  onLoad: function(options) {
    let str = '我不是程序,我是碼農。';
    let at = str.charAt(3);
    let codeAt = str.charCodeAt(1);
    console.log('字符串:%s', str);
    console.log('charAt(3)=%s, charCodeAt(1)=%s', at, codeAt);
    let i = str.indexOf("碼農");
    let l = str.lastIndexOf("程序");
    console.log('indexOf=%d,lastIndexOf=%d', i, l);
    let c = str.localeCompare('程序');
    let m = str.match('程序', '碼農');
    console.log('localeCompare=%s,match=%s', c, m)
    let s = str.search('程序');
    console.log('search=%s', s)
  }
})

9.2 截取

slice(start,end): 提取字符串的某個部分,並以新的字符串返回被提取的部分。Start爲必填項,要抽取的片段的起始下標,第一個字符位置爲 0。end爲可選項,緊接着要抽取的片斷的結尾的下標。spa

split(separator,limit): separator字符串或正則表達式,爲可選項。limit可選,默認爲數組的最大長度。

substring(from,to): from必填項,正整數,規定要提取的子串的第一個字符在字符串中的位置。to可選。正整數,默認那麼返回的子串會一直到字符串的結尾。

Page({
  //字符串截取例子
  onLoad: function(options) {
    let str = '不會編碼的人,也能稱碼農?';
    let s = str.slice(2, 4);
    console.log('字符串=%s', str);
    console.log('str.slice(2,4)=%s', s);
    let a = str.split(',');
    console.log('str.split(,)=%s', a);
    let sb = str.substring(1,2);
    console.log('substring(1,2)=%s', sb);
  }
})

9.3 轉換

toString()方法;數值、字符串、對象、布爾;都有toString方法;這個方法惟一能作的就是返回相應的字符串;其中null和undefined沒有toString()方法;

String()屬於強制轉換, null轉換的結果爲null;undefined轉換的結果爲undefined;其他的若是有toString()方法,即調用該方法並返回相應的結果;

valueOf: 返回String對象的原始值, 隱式調用;

String.fromCharCode(n1, n2, ..., nX): 將 Unicode 編碼轉爲一個字符;

toLowerCase: 用於把字符串轉換爲小寫;

toLocaleLowerCase: 與 toLowerCase() 不一樣的是,toLocaleLowerCase() 方法按照本地方式把字符串轉換爲小寫。只有幾種語言(如土耳其語)具備地方特有的大小寫映射,全部該方法的返回值一般與 toLowerCase() 同樣。

toUpperCase: 把字符串轉換爲大寫。

toLocaleUpperCase: 與 toUpperCase() 不一樣的是,toLocaleUpperCase() 方法按照本地方式把字符串轉換爲大寫。只有幾種語言(如土耳其語)具備地方特有的大小寫映射,全部該方法的返回值一般與 toUpperCase() 同樣。​​​​​​

Page({
  //字符串轉換例子
  onLoad: function(options) {
    let str = "i love Programming.";
    let v = str.valueOf();
    console.log('字符串=%s', str);
    console.log('valueOf=%s', v);
    let l = str.toLowerCase();
    let u = str.toUpperCase();
    console.log('toLowerCase=%s,toUpperCase=%s', l, u);
    let f = String.fromCharCode('30721', '20892');
    console.log('fromCharCode=%s', f);
  }
})

9.4 其餘

concat(string1, ..., stringX): 鏈接兩個或更多字符串,並返回新的字符串;

trim: 去除字符串兩邊的空白;

replace(searchvalue,newvalue):  在字符串中查找匹配的子串, 並替換與正則表達式匹配的子串。

Page({
  //字符串其餘方法例子
  onLoad: function(options) {
    let str = " 我是程序猿";
    let c = str.concat(',','我喜歡聽歌.');
    let t = c.trim();
    console.log('concat=%s', c);
    console.log('trim=%s', t);
    let r = t.replace(/我/g,'你');
    console.log('replace=%s',r);
  }
})

我是一名傲嬌的程序員,當了10多年技術總監,工做很忙時,我只在個人公衆號:半碼(halfcode)發佈文章。

相關文章
相關標籤/搜索