如何分割字符串,打破特定字符?

问题描述 投票:498回答:14

我有这个字符串

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

使用JavaScript,解析它的最快方法是什么

var name = "john smith";
var street= "123 Street";
//etc...
javascript string-split
14个回答
793
投票

使用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.

2
投票

Zach有这个权利..使用他的方法你也可以做一个看似“多维”的数组..我在JSFiddle ~创建了一个简单的例子

http://jsfiddle.net/LcnvJ/2/

0
投票

这个// 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(","); 完成了事情。

来源: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); splitByTilde函数。

first

0
投票

由于逗号分裂问题与此问题重复,请在此处添加。

如果你想分割一个角色并且还要处理可能跟随该角色的额外空格(通常用逗号进行),你可以使用const getName = compose(first, splitByTilde); let string = 'john smith~123 Street~Apt 4~New York~NY~12345'; getName(string); // "john smith" 然后使用replace,如下所示:

split

0
投票

Try in Plain Javascript

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

0
投票

使用此代码 -

 //basic url=http://localhost:58227/ExternalApproval.html?Status=1

 var ar= [url,statu] = window.location.href.split("=");

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];

36
投票

根据ECMAScript 6 qazxsw poi,干净的方法是解构数组:

ES6

您可能在输入字符串中有额外的项目。在这种情况下,您可以使用rest运算符为其余运算符获取数组,或者只是忽略它们:

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

我认为值是只读参考,并使用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"]声明。

享受ES6!


16
投票

尽管这不是最简单的方法,但您可以这样做:

const

使用解构更新ES2015

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"
}

12
投票

你会想看看JavaScript的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 substr,因为这不是一个适合jQuery的任务。


5
投票

好吧,最简单的方法是这样的:

split

5
投票

如果只找到Spliter

拆分它

else返回相同的字符串

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

4
投票

就像是:

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]; 来分割文本。

作为替代方案,您也可以使用split如下

match

正则表达式var str = 'john smith~123 Street~Apt 4~New York~NY~12345'; matches = str.match(/[^~]+/g); console.log(matches); document.write(matches);将匹配除[^~]+之外的所有字符并返回数组中的匹配项。然后,您可以从中提取匹配项。

© www.soinside.com 2019 - 2024. All rights reserved.