我如何分割字符串,在特定字符处断开?


533

我有这串

'john smith~123 Street~Apt 4~New York~NY~12345'

使用JavaScript,将其解析为最快的方法是

var name = "john smith";
var street= "123 Street";
//etc...

Answers:


845

使用JavaScript的String.prototype.split功能:

var input = 'john smith~123 Street~Apt 4~New York~NY~12345';

var fields = input.split('~');

var name = fields[0];
var street = fields[1];
// etc.

51

您不需要jQuery。

var s = 'john smith~123 Street~Apt 4~New York~NY~12345';
var fields = s.split(/~/);
var name = fields[0];
var street = fields[1];

53
您无需在此简单替换中添加正则表达式。它只会使它变慢。您可以将其更改为引号,以进行简单的字符串替换。
阿尼什·古普塔

47

根据ECMAScript6 ES6,干净的方法是破坏数组:

const input = 'john smith~123 Street~Apt 4~New York~NY~12345';

const [name, street, unit, city, state, zip] = input.split('~');

console.log(name); // john smith
console.log(street); // 123 Street
console.log(unit); // Apt 4
console.log(city); // New York
console.log(state); // NY
console.log(zip); // 12345

您可能在输入字符串中包含其他项。在这种情况下,您可以使用rest运算符获取其余的数组,或者忽略它们:

const input = 'john smith~123 Street~Apt 4~New York~NY~12345';

const [name, street, ...others] = input.split('~');

console.log(name); // john smith
console.log(street); // 123 Street
console.log(others); // ["Apt 4", "New York", "NY", "12345"]

我假设值的只读引用并使用了const声明。

享受ES6!


6
您也可以跳过以下项目:const [name, , unit, ...others] = ...
Sallar

16

即使这不是最简单的方法,也可以执行以下操作:

var addressString = "~john smith~123 Street~Apt 4~New York~NY~12345~",
    keys = "name address1 address2 city state zipcode".split(" "),
    address = {};

// clean up the string with the first replace
// "abuse" the second replace to map the keys to the matches
addressString.replace(/^~|~$/g).replace(/[^~]+/g, function(match){
    address[ keys.unshift() ] = match;
});

// address will contain the mapped result
address = {
    address1: "123 Street"
    address2: "Apt 4"
    city: "New York"
    name: "john smith"
    state: "NY"
    zipcode: "12345"
}

使用解构的ES2015更新

const [address1, address2, city, name, state, zipcode] = addressString.match(/[^~]+/g);

// The variables defined above now contain the appropriate information:

console.log(address1, address2, city, name, state, zipcode);
// -> john smith 123 Street Apt 4 New York NY 12345

4
首先,我们有一个用'〜'号分隔的字符串和一个。数组keys。第二个替换函数[^~]+用于匹配每个不同的部分(即“ 123 Street”,“ Apt 4”等),并为每个部分调用该函数,并将其作为参数传递。在每次运行时,该函数从keys数组中获取第一个键(也使用Array.unshift将其删除),并将该键和该部分分配给地址对象。
ewino 2015年


5

好吧,最简单的方法是:

var address = theEncodedString.split(/~/)
var name = address[0], street = address[1]

5

如果找到分离器,则仅

拆分它

否则返回相同的字符串

function SplitTheString(ResultStr) {
    if (ResultStr != null) {
        var SplitChars = '~';
        if (ResultStr.indexOf(SplitChars) >= 0) {
            var DtlStr = ResultStr.split(SplitChars);
            var name  = DtlStr[0];
            var street = DtlStr[1];
        }
    }
}

4

就像是:

var divided = str.split("/~/");
var name=divided[0];
var street = divided[1];

可能是最简单的


2
不,您想要split("~")split(/~/)不想要split("/~/")。后者只会分裂"John/~/Smith"而不会分裂"John~Smith"
安德鲁·威廉姆斯

4

您可以split用来拆分文本。

或者,您也可以使用match以下方法

var str = 'john smith~123 Street~Apt 4~New York~NY~12345';
matches = str.match(/[^~]+/g);

console.log(matches);
document.write(matches);

正则表达式[^~]+将匹配除以外的所有字符,~并在数组中返回匹配项。然后,您可以从中提取匹配项。


1
这对我有用!str.split();在Firefox中无法使用,但是在Chrome和Firefox中都可以使用。
桑迪普


2

扎克有这个权利..使用他的方法,你也可以做一个看似“多维”阵列。我在创建一个简单的例子的jsfiddle http://jsfiddle.net/LcnvJ/2/

// array[0][0] will produce brian
// array[0][1] will produce james

// array[1][0] will produce kevin
// array[1][1] will produce haley

var array = [];
    array[0] = "brian,james,doug".split(",");
    array[1] = "kevin,haley,steph".split(",");

2

JavaScript:将字符串转换为数组JavaScript拆分

    var str = "This-javascript-tutorial-string-split-method-examples-tutsmake."
 
    var result = str.split('-'); 
     
    console.log(result);
     
    document.getElementById("show").innerHTML = result; 
<html>
<head>
<title>How do you split a string, breaking at a particular character in javascript?</title>
</head>
<body>
 
<p id="show"></p> 
 
</body>
</html>

https://www.tutsmake.com/javascript-convert-string-to-array-javascript/


1

这样string.split("~")[0];就完成了。

来源:String.prototype.split()


另一种使用咖喱和功能成分的功能方法。

因此,第一件事就是拆分功能。我们想把它"john smith~123 Street~Apt 4~New York~NY~12345"变成这个["john smith", "123 Street", "Apt 4", "New York", "NY", "12345"]

const split = (separator) => (text) => text.split(separator);
const splitByTilde = split('~');

因此,现在我们可以使用我们的专用splitByTilde功能。例:

splitByTilde("john smith~123 Street~Apt 4~New York~NY~12345") // ["john smith", "123 Street", "Apt 4", "New York", "NY", "12345"]

要获得第一个元素,我们可以使用list[0]运算符。让我们构建一个first函数:

const first = (list) => list[0];

该算法是:用冒号分隔,然后获取给定列表的第一个元素。因此,我们可以组合这些功能以构建最终getName功能。使用以下命令构建compose功能reduce

const compose = (...fns) => (value) => fns.reduceRight((acc, fn) => fn(acc), value);

现在使用它来构成splitByTildefirst运行。

const getName = compose(first, splitByTilde);

let string = 'john smith~123 Street~Apt 4~New York~NY~12345';
getName(string); // "john smith"


0

由于逗号分割问题已复制到该问题,因此请在此处添加。

如果您想分割一个字符并且还要处理该字符后可能出现的多余空格(通常在逗号中出现),则可以使用replacethen split,如下所示:

var items = string.replace(/,\s+/, ",").split(',')

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.