1. 程式人生 > >——————————JavaScript中,對String字符串的一些操作——————————

——————————JavaScript中,對String字符串的一些操作——————————

repl 字母 第一個字符 mic arr size 位置 str2 str1

—————————————————————————————————————————————————————————————————————————————————————————————

<html>

<title></title>

<head></head>
<body>
<script language="JavaScript">
var arr=new Array(7,4,7,3,2,6,2,3);
document.write("</br>"+arr.sort()+"</br>");
var str1=new String("I Love China");
var str2=new String("I Love England");
document.write("字符串str1的長度為:"+str1.length+"</br>");


document.write("返回字符串2的第5個字符是:"+str2.charAt(5)+"</br>");
document.write("檢查第一個字符串China的位置:"+str1.indexOf("China")+"</br>");
document.write("把字符串中的字符變成大寫字母:"+str2.toUpperCase()+"</br>");
var str3=str1.replace("China","England");
document.write("把1字符串替換為2字符串:"+str3+"</br>");
</script> </body>

</html>

————————————————————————————————————————————————————————————————————————————————————————————————————————

——————————JavaScript中,對String字符串的一些操作——————————