JavaScript split() 方法

2016-02-19 16:56 8 1 收藏

下面,图老师小编带您去了解一下JavaScript split() 方法,生活就是不断的发现新事物,get新技能~

【 tulaoshi.com - Web开发 】

Definition and Usage

定义与用法

The split() method is used to split a string into an array of strings.

split()方法用于将一个字符串分解成一个数组对象。

Syntax

语法

stringObject.split(separator, howmany)

 

Parameter

参数

Description

注释

separator

分隔符

Required. Specifies the character, regular expression, or substring that is used to determine where to split the string

必选项。指定的字符,字符串或正则表达式,作为分解用的分隔符

howmany

次数

Optional. Specify how many times split should occur. Must be a numeric value

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)

可选项。指定分解的次数

Tips and Notes

注意

Note: If an empty string ("") is used as the separator, the string is split between each character.

注意:如果用空字符("")作为分隔符号,字符串将被分解成每个所包含的字符所组成的数组。

Example

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)

实例

In this example we will split up a string in different ways:

在本例中,我们将用两种不同的方法分解一个字符串:

 

script type="text/javascript"var str="How are you doing today?"document.write(str.split(" ") + "br /")document.write(str.split("") + "br /")document.write(str.split(" ",3))/script

The output of the code above will be:

输出结果为:

 

How,are,you,doing,today?H,o,w, ,a,r,e, ,y,o,u, ,d,o,i,n,g, ,t,o,d,a,y,?How,are,you

来源:http://www.tulaoshi.com/n/20160219/1613613.html

延伸阅读
标签: Web开发
script language="JavaScript" type="text/javascript" var sss; sss= %=rs("huida")% ; var ss=sss.split(" ") ; for(i=0;iss.length;i++) document.write(ss[i]+'br'); /script 为什么提示说第三行缺少分号(;)我是用英...
//根据字符串,拆分字符串,相当于vb中的split函数 function SplitString(const Source,ch:string):TStringList; var   temp:String;   i:Integer; begin   Result:=TStringList.Create;   //如果是空自符串则返回空列表   if Source=''   then exit; &nbs...
标签: Web开发
Definition and Usage 定义与用法 The indexOf() method returns the position of the first occurrence of a specified string value in a string. indexOf()方法返回指定值在字符串中第一次出现的位置 Syntax 语法 stringObject.indexOf(searchvalue,fromindex) Parameter 参数Description 注释s...
标签: Web开发
上次写的一篇《JavaScript 数组的 uniq 方法》,发现代码的问题还是存在。比如如果数组内有 undefined 元素就无法过滤等。 昨天看见 Lazy 兄弟重新更新了函数,现在他是这样子写的: Array.prototype.uniq = function() {     var resultArr = [], ...
标签: Web开发
在javascript中,String的函数replace()简直太让人喜爱了。它灵活而强大的字符替换处理能力,让我不禁想向大家介绍它。 replace()最简单的算是能力就是简单的字符替换。示例代码如下: script language="javascript"var strM = "javascript is a good script language";//在此我想将字母a替换成字母Aalert(strM...

经验教程

157

收藏

39
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部