操作字符串的值是一般的開發人員必須面臨的家常便飯。操作字符串的具體方式有很多,比如說從一個字符串是提取出一部分內容來,或者確定一個字符串是否包含一個特定的字符。下面的 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
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
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 代碼完成這一功能:
1 function validation() {
2
3 var doc = document.forms[0];
4
5 var msg = "";
6
7 if (doc.Name.value == "") {
8
9 msg += "- Name is missing\n";
10
11 }
12
13 if (doc.Address.value == "") {
14
15 msg += "- Address is missing\n";
16
17 }
18
19 if (doc.ZipCode.value == "") {
20
21 msg += "- Zip code is missing\n";
22
23 }
24
25 var zip = new String(doc.ZipCode.value);
26
27 if (zip.search(/^[0-9][0-9][0-9][0-9][0-9]$/)==-1) {
28
29 msg += "- Enter valid Zip code";
30
31 }
32
33 if (msg == "") {
34
35 doc.submit;
36
37 } else {
38
39 msg = "Please correct the following validation errors and re-submit:\n\n" + msg;
40
41 alert(msg);
42
43 }
44
45 }
46
47
在用戶提交表單時,這個函數就會被調用。對函數的調用是在一個 HTML 按鈕的 onSubmit 事件中實現的。
<input type="button" type="submit" value="submit" onClick="validation()">
驗證函數檢查每個域是否為空。如果發現了一個空值,那麼就會在驗證消息變量 msg 後面添加一個出錯消息。此外,還使用了一個正則表達式來驗證郵政編碼域的格式。在這裡,我們只接受五位數的美國地區郵政編碼。如果發現有任何錯誤(即 msg 變量不為空),那麼程序就會顯示一個錯誤消息;否則的話,程序就會提交表單。
一門強大的語言
JavaScript 已經發展成熟為一種功能完備的語言,能夠用來構建強大的應用程序。它是對具有非連接性天性的 Web 界面的一個完美的補充,能夠在不與 Web 服務器交互的情況下完成很多客戶端操作。