ฉันจะแยกสตริงโดยแยกอักขระอย่างไร


533

ฉันมีสายนี้

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

การใช้ JavaScript เป็นวิธีที่เร็วที่สุดในการวิเคราะห์คำ

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

คำตอบ:



51

คุณไม่ต้องการ 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];

53
คุณไม่จำเป็นต้องเพิ่ม regex ลงในการแทนที่แบบง่ายนี้ มันจะทำให้ช้าลงถ้ามีอะไร คุณสามารถเปลี่ยนเป็นเครื่องหมายคำพูดเพื่อแทนที่สตริงแบบง่าย
Anish Gupta

47

ตามที่ 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

คุณอาจมีรายการพิเศษในสายป้อนข้อมูล ในกรณีนี้คุณสามารถใช้ตัวดำเนินการส่วนที่เหลือเพื่อรับอาร์เรย์สำหรับส่วนที่เหลือหรือเพียงแค่ละเว้น:

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!


6
คุณยังสามารถข้ามรายการได้:const [name, , unit, ...others] = ...
Sallar

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
ครั้งแรกที่เรามีสตริงคั่นด้วย '~' keysสัญญาณและอาเรย์ของ ฟังก์ชันแทนที่ที่สองใช้[^~]+เพื่อจับคู่แต่ละส่วนที่แตกต่างกัน (เช่น '123 Street', 'Apt 4' ฯลฯ ) และเรียกใช้ฟังก์ชันสำหรับแต่ละส่วนส่งผ่านเป็นอาร์กิวเมนต์ ในการรันแต่ละครั้งฟังก์ชันจะใช้คีย์แรกจากอาร์เรย์คีย์ (รวมถึงลบออกโดยใช้ Array.unshift) และกำหนดคีย์และส่วนให้กับวัตถุที่อยู่
ewino


5

ด้วยวิธีที่ง่ายที่สุดจะเป็นเช่น:

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

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

4

สิ่งที่ต้องการ:

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

อาจจะง่ายที่สุด


2
ไม่คุณต้องการsplit("~")หรือsplit(/~/)ไม่split("/~/")ก็ได้ หลังเท่านั้นที่จะแยกออกและไม่ได้"John/~/Smith" "John~Smith"
Andrew Willems

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

regex [^~]+จะจับคู่อักขระทั้งหมดยกเว้น~และส่งคืนการจับคู่ในอาร์เรย์ จากนั้นคุณสามารถแยกการแข่งขันจากมัน


1
สิ่งนี้ได้ผลสำหรับฉัน! str.split();ไม่ทำงานใน Firefox แต่ใช้ได้ทั้งใน Chrome และ Firefox
Sandeep


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

2

JavaScript: แปลง String เป็น Array JavaScript Split

    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/


1

นี้ 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);

และตอนนี้ใช้มันเพื่อเขียนsplitByTildeและfirstฟังก์ชั่น

const getName = compose(first, splitByTilde);

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


0

เนื่องจากคำถามที่คั่นด้วยเครื่องหมายจุลภาคซ้ำกับคำถามนี้เพิ่มที่นี่

หากคุณต้องการที่จะแยกตัวอักษรและยังจัดการช่องว่างพิเศษที่อาจจะเป็นไปตามตัวละครที่ซึ่งมักจะเกิดขึ้นด้วยเครื่องหมายจุลภาคคุณสามารถใช้replaceแล้วsplitเช่นนี้

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

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.