ฉันมีสายนี้
'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...
คำตอบ:
ด้วย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.
คุณไม่ต้องการ 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];
ตามที่ 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!
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' ฯลฯ ) และเรียกใช้ฟังก์ชันสำหรับแต่ละส่วนส่งผ่านเป็นอาร์กิวเมนต์ ในการรันแต่ละครั้งฟังก์ชันจะใช้คีย์แรกจากอาร์เรย์คีย์ (รวมถึงลบออกโดยใช้ Array.unshift) และกำหนดคีย์และส่วนให้กับวัตถุที่อยู่
คุณจะต้องมองเข้าไปในsubstratesหรือตัวแบ่งของ JavaScript เนื่องจากนี่ไม่ใช่งานที่เหมาะสำหรับ jQuery
ด้วยวิธีที่ง่ายที่สุดจะเป็นเช่น:
var address = theEncodedString.split(/~/)
var name = address[0], street = address[1]
หากพบว่า 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 divided = str.split("/~/");
var name=divided[0];
var street = divided[1];
อาจจะง่ายที่สุด
split("~")
หรือsplit(/~/)
ไม่split("/~/")
ก็ได้ หลังเท่านั้นที่จะแยกออกและไม่ได้"John/~/Smith"
"John~Smith"
คุณสามารถใช้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 [^~]+
จะจับคู่อักขระทั้งหมดยกเว้น~
และส่งคืนการจับคู่ในอาร์เรย์ จากนั้นคุณสามารถแยกการแข่งขันจากมัน
str.split();
ไม่ทำงานใน Firefox แต่ใช้ได้ทั้งใน Chrome และ Firefox
str.split();
ทำงานใน Firefox และเบราว์เซอร์หลักทั้งหมด
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(",");
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/
นี้ 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"
//basic url=http://localhost:58227/ExternalApproval.html?Status=1
var ar= [url,statu] = window.location.href.split("=");
เนื่องจากคำถามที่คั่นด้วยเครื่องหมายจุลภาคซ้ำกับคำถามนี้เพิ่มที่นี่
หากคุณต้องการที่จะแยกตัวอักษรและยังจัดการช่องว่างพิเศษที่อาจจะเป็นไปตามตัวละครที่ซึ่งมักจะเกิดขึ้นด้วยเครื่องหมายจุลภาคคุณสามารถใช้replace
แล้วsplit
เช่นนี้
var items = string.replace(/,\s+/, ",").split(',')
ใช้รหัสนี้ -
function myFunction() {
var str = "How are you doing today?";
var res = str.split("/");
}