用 JavaScript 操做字符串

用 JavaScript 操做字符串
雖然 JavaScript 有不少用處,可是處理字符串是其中最流行的一個。下面讓咱們深刻地分析一下使用 JavaScript 操做字符串。在 JavaScript 中, String 是對象。 String 對象並非以字符數組的方式存儲的,因此咱們必須使用內建函數來操縱它們的值。這些內建函數提供了不一樣的方法來訪問字符串變量的內容。下面咱們詳細看一下這些函數。
一應俱全
操做字符串的值是通常的開發人員必須面臨的屢見不鮮。操做字符串的具體方式有不少,好比說從一個字符串是提取出一部份內容來,或者肯定一個字符串是否包含一個特定的字符。下面的 JavaScript 函數爲開發人員提供了他們所須要的全部功能:
•  concat() – 將兩個或多個字符的文本組合起來,返回一個新的字符串。
•  indexOf() – 返回字符串中一個子串第一處出現的索引。若是沒有匹配項,返回 -1 。
•  charAT() – 返回指定位置的字符。
•  lastIndexOf() – 返回字符串中一個子串最後一處出現的索引,若是沒有匹配項,返回 -1 。

 
•  match() – 檢查一個字符串是否匹配一個正則表達式。
•  substring() – 返回字符串的一個子串。傳入參數是起始位置和結束位置。
•  replace() – 用來查找匹配一個正則表達式的字符串,而後使用新字符串代替匹配的字符串。
•  search() – 執行一個正則表達式匹配查找。若是查找成功,返回字符串中匹配的索引值。不然返回 -1 。
•  slice() – 提取字符串的一部分,並返回一個新字符串。
•  split() – 經過將字符串劃分紅子串,將一個字符串作成一個字符串數組。
•  length() – 返回字符串的長度,所謂字符串的長度是指其包含的字符的個數。
•  toLowerCase() – 將整個字符串轉成小寫字母。
•  toUpperCase() – 將整個字符串轉成大寫字母。
注意: concat 、 match 、 replace 和 search 函數是在 JavaScript 1.2 中加入的。全部其它函數在 JavaScript 1.0 就已經提供了。
下面讓咱們看一下如何在 JavaScript 使用這些函數。下面的代碼是用到了前面提到的全部函數:
function manipulateString(passedString1, passedString2) {
var concatString;
// The string passed to concat is added to the end of the first string
concatString = passedString1.concat(passedString2);
alert(concatString);
// The following if statement will be true since first word is Tony
if (concatString.charAt(3) == "y") {
alert("Character found!");
}
// The last position of the letter n is 10
alert("The last index of n is: " + concatString.lastIndexOf("n"));
// A regular expression is used to locate and replace the substring
var newString = concatString.replace(/Tony/gi,"General");
// The following yields Please salute General Patton
alert("Please salute " + newString);
// The match function returns an array containing all matches found
matchArray = concatString.match(/Tony/gi);
for (var i=0; i<matchArray.length;i++) {
alert("Match found: " + matchArray[i]);
}
// Determine if the regular expression is found, a –1 indicates no
if (newString.search(/Tony/) == -1) {
alert("String not found");
} else {
alert("String found.");
}
// Extract a portion of the string and store it in a new variable
var sliceString = newString.slice(newString.indexOf("l")+2,newString.length);
alert(sliceString);
// The split function creates a new array containing each value separated by a space
stringArray = concatString.split(" ");
for (var i=0; i<stringArray.length;i++) {
alert(stringArray[i];
}
alert(newString.toUpperCase());
alert(newString.toLowerCase());
}
下面是執行上面的代碼獲得的結果:
Tony Patton
Character Found!
The last index of n is: 10
Match found: Tony
Please salute General Patton
String not found
Patton
Tony
Patton
GENERAL PATTON
general patton
示例代碼把全部這些提到的函數都用到了。
特殊字符
除了這些函數以外,還有不少的特殊字符能夠用來表示關鍵的效果。這些特殊字符包括:
•  \t – 跳格鍵
•  \b – 退格 / 刪除
•  \r – 回車
•  \n – 換行
•  \f – 換頁
特殊字符最多見的用途就是格式化輸出。例如,你可能須要在輸出中插入一個換行來正確地顯示一個值。並且,在換行時也須要回車。在一些平臺上,「 \n 」已經足夠產生換行效果了,而在一些機器上要正確地顯示一個換行則須要「 \r\n 」。下面的例子顯示了在一個多行窗口上顯示的特殊字符:
var output = null;
output = "Special Characters";
output += "\n";
output += "===============";
output += "\n";
output += " \\t - tab";
output += "\n";
output += " \\b - backspace/delete";
output += "\n";
output += " \\r - carriage return";
output += "\n";
output += " \\n - newline";
output += "\n";
output += " \\f - form feed";
output += "\n";
alert(output);

前面的例子使用加號來鏈接字符串,而沒有使用 concat 函數。緣由很簡單,對於 concat 函數來講,每個操做都須要一個新的變量;反之,咱們這裏用的這種方法則簡單地擴展了原有的值,而不須要新的變量。並且,示例中使用換碼符來正確地顯示特殊字符。系統將一個反斜線看成一個信號,認爲它後面會跟一個特殊字符,可是連着兩個反斜線則抵消這種操做。輸出中的每一個字符都經過 newline 特殊字符被顯示在新的一行。
添加到工具箱中
特殊字符和函數能夠與其它 JavaScript 技巧結合起來解決不少問題。其中一種狀況是用來進行 JavaScript 客戶端表單驗證,這篇文章中提出的方法能夠簡單地用來實現表單驗證。
下面的代碼將在一個表單被提交時調用。要提交的表單包含三個域:名稱、地址和郵政編碼。爲了實現起來比較簡單,咱們只驗證每一個域都不能爲空,而且郵政編碼必須是數字。下面的 JavaScript 代碼完成這一功能:
function validation() {
var doc = document.forms[0];
var msg = "";
if (doc.Name.value == "") {
msg += "- Name is missing\n";
}
if (doc.Address.value == "") {
msg += "- Address is missing\n";
}
if (doc.ZipCode.value == "") {
msg += "- Zip code is missing\n";
}
var zip = new String(doc.ZipCode.value);
if (zip.search(/^[0-9][0-9][0-9][0-9][0-9]$/)==-1) {
msg += "- Enter valid Zip code";
}
if (msg == "") {
doc.submit;
} else {
msg = "Please correct the following validation errors and re-submit:\n\n" + msg;
alert(msg);
}
}
在用戶提交表單時,這個函數就會被調用。對函數的調用是在一個 HTML 按鈕的 onSubmit 事件中實現的。
<input type="button" type="submit" value="submit" onClick="validation()">
驗證函數檢查每一個域是否爲空。若是發現了一個空值,那麼就會在驗證消息變量 msg 後面添加一個出錯消息。此外,還使用了一個正則表達式來驗證郵政編碼域的格式。在這裏,咱們只接受五位數的美國地區郵政編碼。若是發現有任何錯誤(即 msg 變量不爲空),那麼程序就會顯示一個錯誤消息;不然的話,程序就會提交表單。
一門強大的語言
JavaScript 已經發展成熟爲一種功能完備的語言,可以用來構建強大的應用程序。它是對具備非鏈接性天性的 Web 界面的一個完美的補充,可以在不與 Web 服務器交互的狀況下完成不少客戶端操做。
相關文章
相關標籤/搜索