web-dev-qa-db-ja.com

特定の文字で分割して文字列を分割する方法

このひもがあります

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

JavaScriptを使用して、これを解析するための最速の方法は何ですか

var name = "john smith";
var street= "123 Street";
//etc...
489
ctrlShiftBryan

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.
777
Zach

あなたは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];
48
Grant Wagner

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を楽しんでください。

31
Vahid Hallaji

これは最も簡単な方法ではありませんが、これを行うことができます。

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
16
Torsten Walter

JavaScript substring または split を調べてみるとよいでしょう。これは実際にはjQueryに適したタスクではないからです。

12
John Sheehan

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];
        }
    }
}
5
BJ Patel

最も簡単な方法は次のようになります。

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

splitを使ってテキストを分割することができます。

代わりに、次のようにmatchを使うこともできます。

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

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

正規表現[^~]+は、~を除くすべての文字と一致し、その一致を配列で返します。それからそれから一致を抽出できます。

4
Tushar

何かのようなもの:

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

おそらく最も簡単になるだろう

4
Steve g

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(",");
2
Billy Hallman

コンマの分割の質問がこの質問に重複しているので、これをここに追加します。

文字を分割し、その文字に続く可能性がある余分な空白も処理したい場合(これはコンマでよく起こります)、次のようにreplaceを使用してからsplitを使用できます。

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

普通のJavascriptで試す

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

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

この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);

そして今それを使ってsplitByTildefirst関数を構成します。

const getName = compose(first, splitByTilde);

let string = 'john smith~123 Street~Apt 4~New York~NY~12345';
getName(string); // "john smith"
0
leandrotk

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/

0
Developer

このコードを使う------

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

}
0