Javascript:字符串对象(string)的基本操作

本文代码整理自w3school:http://www.w3school.com.cn

1.获取字符串的长度:

var s = "Hello world";
document.write("length:"+s.length);

2.为字符串添加各种样式,如:

var txt = "Some words";
document.write("<p>Big: " + txt.big() + "</p>")
document.write("<p>Small: " + txt.small() + "</p>")
document.write("<p>Bold: " + txt.bold() + "</p>")
document.write("<p>Italic: " + txt.italics() + "</p>")
document.write("<p>Blink: " + txt.blink() + " (does not work in IE)</p>")
document.write("<p>Fixed: " + txt.fixed() + "</p>")
document.write("<p>Strike: " + txt.strike() + "</p>")
document.write("<p>Fontcolor: " + txt.fontcolor("Red") + "</p>")
document.write("<p>Fontsize: " + txt.fontsize(16) + "</p>")
document.write("<p>Link: " + txt.link("http://www.w3school.com.cn") + "</p>")

3.获取字符串中部分内容首次出现的位置:

var hw_text = "Hello world";
document.write(hw_text.indexOf("Hello")+"<br/>");
document.write(hw_text.indexOf("world")+"<br/>");
document.write(hw_text.indexOf("abc")+"<br/>");

4.内容替换:

var str="Visit Microsoft!"
document.write(str.replace(/Microsoft/,"W3School"))

效果图:

示例代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-cn" />

<title>Javascript 字符串对象</title>
<head>
  <style>
    body {background-color:#e6e6e6}
  </style>
</head>

<body>
  <h3>(一)length属性:获取字符串的长度</h3>
  <p id="hw">Hello world, Hello javascript!</p>
  <script>
    var s = document.getElementById("hw").innerHTML;
    document.write("length:"+s.length);
  </script>

  <h3>(二)为字符串添加样式</h3>
  <p>对字符串调用样式的相关方法时,会自动拼接相应的html标签</p>
  <p id = "hw_02">some words</p>
  <button onclick="alertBig()">Call txt.big()</button>
  <script>
    var txt = document.getElementById("hw_02").innerHTML;
    document.write("<p>Big: " + txt.big() + "</p>")
    document.write("<p>Small: " + txt.small() + "</p>")

    document.write("<p>Bold: " + txt.bold() + "</p>")
    document.write("<p>Italic: " + txt.italics() + "</p>")

    document.write("<p>Blink: " + txt.blink() + " (does not work in IE)</p>")
    document.write("<p>Fixed: " + txt.fixed() + "</p>")
    document.write("<p>Strike: " + txt.strike() + "</p>")

    document.write("<p>Fontcolor: " + txt.fontcolor("Red") + "</p>")
    document.write("<p>Fontsize: " + txt.fontsize(16) + "</p>")

    document.write("<p>Link: " + txt.link("http://www.w3school.com.cn") + "</p>")

    function alertBig(){
      alert(txt.big());
    }
  </script>

  <h3>(三)indexOf方法:定位字符串中某一个指定的字符首次出现的位置</h3>
  <script>
    var hw_text = "Hello world";
    document.write(hw_text.indexOf("Hello")+"<br/>");
    document.write(hw_text.indexOf("world")+"<br/>");
    document.write(hw_text.indexOf("abc")+"<br/>");
  </script>

  <h3>(四)replace()方法:替换字符串中的部分内容</h3>
  <script>
    var str="Visit Microsoft!"
    document.write(str.replace(/Microsoft/,"W3School"))
  </script>

</body>

</html>
时间: 2024-11-07 01:51:31

Javascript:字符串对象(string)的基本操作的相关文章

JavaScript字符串对象(string)基本用法

1.获取字符串的长度: var s = "Hello world"; document.write("length:"+s.length); 2.为字符串添加各种样式 var txt = "Some words"; document.write("<p>Big: " + txt.big() + "</p>") document.write("<p>Small:

JavaScript 字符串(String) 对象

JavaScript 字符串(String) 对象 String 对象用于处理已有的字符块. JavaScript 字符串 一个字符串用于存储一系列字符就像 "John Doe". 一个字符串可以使用单引号或双引号: 实例 var carname="Volvo XC60";var carname='Volvo XC60'; 你使用位置(索引)可以访问字符串中任何的字符: 实例 var character=carname[7]; 字符串的索引从零开始, 所以字符串第一

JavaScript 字符串对象的常用处理

在前端开发中,我们常常面临着各种操作,各种处理,其中字符串处理就是所用非常之高的,有的开发人员甚至会将其他的数据类型转成字符串数据类型,进行操作后,在转回去,这样做有好处,也有坏处,那现在就看下,字符串都有哪些处理方式,有说错的地方欢迎大家指正 string对象属性 length 定义:length 属性可返回字符串的字符长度 console.log("asdasd".length) //6 constructor 定义:对创建该对象的函数的引用,是不是不明白,就是返回创建这个对象的函

javascript字符串对象

1.charCodeAt方法返回一个整数,代表指定位置字符的Unicode编码. strObj.charCodeAt(index) var str = "ABC"; str.charCodeAt(0); 结果:65 2.fromCharCode方法从一些Unicode字符串中返回一个字符串. String.fromCharCode([code1[,code2...]]) String.fromCharCode(65,66,112); 结果:ABp 3.charAt方法返回指定索引位置处

Foundation框架(2)字符串对象

字符串对象NSString Objective-C使用NSString类描述字符串 NSString是一种不可变对象,即:对象创建后,值不可改变 NSString提供大量的操作方法: 多样的创建方式 与数值的转换 文件/URL操作 子串的获取 构建新串 描述路径的各种操作 ... 字符串对象NSString及基本操作 创建:init方法和类方法 + (instancetype)string     //空串 + (instancetype)stringWithFormat:(NSString *

javascript的String字符串对象

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <title>typeof</title></head><body><script> //1.typeof只能判断基本数据类型 //(1)字符串

JavaScript中的String字符串对象的方法总结:

温故而知新,可以为师矣.字符串对象看下面的方法即可. 1:string.charAt(index)方法:返回该字符串索引的字符. 1 'hello'.charAt(1); 2 "e" 2:string.charCodeAt(index)方法:返回该字符串索引的字符的ASCII码. 1 'a'.charCodeAt(0); 2 97 3:string.indexOf方法确定一个字符串在另一个字符串中的位置(数字型),如果返回-1,就表示不匹配,indexOf从字符串头部开始匹配 1 'h

JavaScript中的String对象

String对象提供的方法用于处理字符串及字符. 常用的一些方法: charAt(index):返回字符串中index处的字符. indexOf(searchValue,[fromIndex]):该方法在字符串中寻找第一次出现的searchValue.如果给定了fromIndex,则从字符串内该位置开始搜索,当searchValue找到后,返回该串第一个字符的位置. lastIndexOf(searchValue,[fromIndex]):从字符串的尾部向前搜索searchValue,并报告找到

JavaScript内建对象-String

JavaScript中通过双引号或单引号界定一个字符串. String对象只有一个属性:length属性,得到字符串的长度. 处理字符串本身的方法 charAt(index) 返回字符串中index指定位置处的一个字符. charCodeAt(index) 返回字符串中index指定位置处的字符的Unicode编码(0~65 535之间的整数,index超出字符串范围则返回NaN). concat(str2) 将字符串Str2连接在当前字符串后组成一个新的字符串,其功能与“+”运算符相同. fr