我有这串
'john smith~123 Street~Apt 4~New York~NY~12345'
使用JavaScript,将其解析为最快的方法是
var name = "john smith";
var street= "123 Street";
//etc...
我有这串
'john smith~123 Street~Apt 4~New York~NY~12345'
使用JavaScript,将其解析为最快的方法是
var name = "john smith";
var street= "123 Street";
//etc...
Answers:
使用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.
根据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!
const [name, , unit, ...others] = ...
即使这不是最简单的方法,也可以执行以下操作:
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
keys
。第二个替换函数[^~]+
用于匹配每个不同的部分(即“ 123 Street”,“ Apt 4”等),并为每个部分调用该函数,并将其作为参数传递。在每次运行时,该函数从keys数组中获取第一个键(也使用Array.unshift将其删除),并将该键和该部分分配给地址对象。
您可以split
用来拆分文本。
或者,您也可以使用match
以下方法
var str = 'john smith~123 Street~Apt 4~New York~NY~12345';
matches = str.match(/[^~]+/g);
console.log(matches);
document.write(matches);
正则表达式[^~]+
将匹配除以外的所有字符,~
并在数组中返回匹配项。然后,您可以从中提取匹配项。
str.split();
在Firefox中无法使用,但是在Chrome和Firefox中都可以使用。
str.split();
可在Firefox和所有主要浏览器中使用。
扎克有这个权利..使用他的方法,你也可以做一个看似“多维”阵列。我在创建一个简单的例子的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(",");
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/
这样string.split("~")[0];
就完成了。
另一种使用咖喱和功能成分的功能方法。
因此,第一件事就是拆分功能。我们想把它"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
运行。
const getName = compose(first, splitByTilde);
let string = 'john smith~123 Street~Apt 4~New York~NY~12345';
getName(string); // "john smith"
//basic url=http://localhost:58227/ExternalApproval.html?Status=1
var ar= [url,statu] = window.location.href.split("=");
由于逗号分割问题已复制到该问题,因此请在此处添加。
如果您想分割一个字符并且还要处理该字符后可能出现的多余空格(通常在逗号中出现),则可以使用replace
then split
,如下所示:
var items = string.replace(/,\s+/, ",").split(',')
使用此代码-
function myFunction() {
var str = "How are you doing today?";
var res = str.split("/");
}