获得一系列句子

时间:2013-02-04 21:38:17

标签: javascript

我有一个带有几个感官的文本区域。(。是一个分隔符)。如何得到一系列句子? 我的意思是例如。 hello world. it's hello world.hello.,结果数组为 - [hello world], [it's hello world], [hello]

2 个答案:

答案 0 :(得分:3)

您应该使用split方法。

http://www.w3schools.com/jsref/jsref_split.asp

var sentenceArray = str.split(“\。| \。”)

答案 1 :(得分:1)

您可以使用.split()将字符串拆分为数组:

> "hello world. it's hello world.hello.".split('.')
["hello world", " it's hello world", "hello", ""]