このひもがあります
'john smith~123 Street~Apt 4~New York~NY~12345'
JavaScriptを使用して、これを解析するための最速の方法は何ですか
var name = "john smith";
var street= "123 Street";
//etc...
JavaScriptの場合 String.prototype.split
function:
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.
あなたは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];
ECMAScript 6 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を楽しんでください。
これは最も簡単な方法ではありませんが、これを行うことができます。
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
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]; } } }
最も簡単な方法は次のようになります。
var address = theEncodedString.split(/~/)
var name = address[0], street = address[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);
正規表現[^~]+
は、~
を除くすべての文字と一致し、その一致を配列で返します。それからそれから一致を抽出できます。
何かのようなもの:
var divided = str.split("/~/");
var name=divided[0];
var street = divided[1];
おそらく最も簡単になるだろう
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(",");
コンマの分割の質問がこの質問に重複しているので、これをここに追加します。
文字を分割し、その文字に続く可能性がある余分な空白も処理したい場合(これはコンマでよく起こります)、次のようにreplace
を使用してからsplit
を使用できます。
var items = string.replace(/,\s+/, ",").split(',')
//basic url=http://localhost:58227/ExternalApproval.html?Status=1
var ar= [url,statu] = window.location.href.split("=");
このstring.split("~")[0];
は物事を成し遂げます。
source: 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
関数を構成します。
const getName = compose(first, splitByTilde);
let string = 'john smith~123 Street~Apt 4~New York~NY~12345';
getName(string); // "john smith"
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/
このコードを使う------
function myFunction() {
var str = "How are you doing today?";
var res = str.split("/");
}