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

时间:2008-09-18 20:14:14

标签: javascript string-split

我有这个字符串

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

使用JavaScript,将此解析为

的最快方法是什么
var name = "john smith";
var street= "123 Street";
//etc...

16 个答案:

答案 0 :(得分:783)

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

答案 1 :(得分:50)

你不需要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];

答案 2 :(得分:33)

根据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!

答案 3 :(得分: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 :(得分:12)

您需要查看JavaScript的substrsplit,因为这不是一个适合jQuery的任务

答案 5 :(得分:5)

嗯,最简单的方法就是:

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

答案 6 :(得分:5)

如果找到 Spliter ,则仅

拆分

否则返回相同的字符串

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

答案 7 :(得分:4)

类似的东西:

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

可能是最简单的

答案 8 :(得分: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);

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

答案 9 :(得分:2)

Zach有这个权利..使用他的方法你也可以制作一个看似“多维”的数组..我在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(",");

答案 10 :(得分:0)

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"

答案 11 :(得分:0)

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

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

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

答案 12 :(得分:0)

尝试使用纯Javascript

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

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

答案 13 :(得分:0)

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/

答案 14 :(得分:0)

javascript中的

split()方法用于将字符串转换为数组。 它采用一个可选参数作为字符,在该参数上进行拆分。就您而言(〜)。

如果splitOn被跳过,它将简单地将字符串放在数组的第0个位置。

如果splitOn只是一个“”,则它将转换单个字符的数组。

所以在你的情况下

var arr = input.split('〜');

您将在arr [0]处获得名称,并在arr 1处获得街道。

您可以阅读以下内容以获取更多详细说明: Split on in JavaScript

答案 15 :(得分:0)

这不像破坏性的答案那样好,但是看到这个问题是在12年前提出的,我决定给它一个同样在12年前有用的答案。

function Record(s) {
    var keys = ["name", "address", "address2", "city", "state", "zip"], values = s.split("~"), i
    for (i = 0; i<keys.length; i++) {
        this[keys[i]] = values[i]
    }
}

var record = new Record('john smith~123 Street~Apt 4~New York~NY~12345')

record.name // contains john smith
record.address // contains 123 Street
record.address2 // contains Apt 4
record.city // contains New York
record.state // contains NY
record.zip // contains zip