我如何分裂一个字符串,在一个特定的字符中断?

我有这个字符串

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

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

var name = "john smith";
var street= "123 Street";
//etc...
1047748 次浏览

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

你会想要查看JavaScript的字符串的子串分裂,因为这不是一个真正适合jQuery的任务。

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


console.log(name);
console.log(street);

嗯,最简单的方法是:

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

喜欢的东西:

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

可能是最简单的

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

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

如果找到分裂器,则仅

它会分裂

否则返回相同的字符串

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

扎克是对的。使用他的方法,你也可以做出一个看似“多维”的数组。我在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(",");

您可以使用split来分割文本。

作为替代,您也可以使用match,如下所示

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


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

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

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

用这个代码——

function myFunction() {
var str = "How are you doing today?";
var res = str.split("/");


}

这个string.split("~")[0];能把事情做好。

来源:# EYZ0


另一种使用curry和函数组合的函数方法。

首先是分裂函数。我们想让"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函数。用reduce构建compose函数:

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"

因为分隔逗号的问题被复制到这个问题上,所以在这里添加这个。

如果你想在一个字符上进行分割,并处理该字符后面可能出现的额外空格,通常使用逗号,你可以使用replace然后split,如下所示:

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

尝试使用纯Javascript

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


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

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/

JavaScript中的

split()方法用于将字符串转换为数组。 它接受一个可选参数,作为一个字符,对其进行拆分。在你的例子中(~).

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

如果splitOn只是一个" ",那么它将转换数组的单个字符。

在你的例子中:

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

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

你可以在这里阅读更详细的解释 # EYZ0 < / p >

这个答案不如破坏性的答案好,但鉴于这个问题是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