Ho questa stringa
'john smith~123 Street~Apt 4~New York~NY~12345'
Utilizzando JavaScript, qual è il modo più veloce per analizzarlo
var name = "john smith";
var street= "123 Street";
//etc...
Ho questa stringa
'john smith~123 Street~Apt 4~New York~NY~12345'
Utilizzando JavaScript, qual è il modo più veloce per analizzarlo
var name = "john smith";
var street= "123 Street";
//etc...
Risposte:
Con la String.prototype.split
funzione JavaScript :
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.
Non hai bisogno di 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];
Secondo ECMAScript6 ES6
, il modo pulito è la distruzione di array:
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
Potresti avere degli elementi extra nella stringa di input. In questo caso, è possibile utilizzare l'operatore Rest per ottenere un array per il resto o semplicemente ignorarli:
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"]
Ho supposto un riferimento di sola lettura per i valori e ho usato la const
dichiarazione.
Divertiti con ES6!
const [name, , unit, ...others] = ...
Anche se questo non è il modo più semplice, potresti farlo:
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"
}
Aggiornamento per ES2015, usando la destrutturazione
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
. La seconda funzione di sostituzione sta usando [^~]+
per abbinare ogni parte diversa (es. "123 Street", "Apt 4", ecc.) E chiama la funzione per ogni parte, passandola come argomento. Ad ogni esecuzione, la funzione prende la prima chiave dall'array keys (rimuovendola anche usando Array.unshift) e assegna la chiave e la parte all'oggetto address.
Ti consigliamo di esaminare il substr o la suddivisione di JavaScript , in quanto non è un'attività adatta a jQuery.
Se si trova Spliter solo allora
Dividilo
else restituisce la stessa stringa
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]; } } }
Qualcosa di simile a:
var divided = str.split("/~/");
var name=divided[0];
var street = divided[1];
Probabilmente sarà più semplice
split("~")
o split(/~/)
no split("/~/")
. Quest'ultimo si sarebbe solo diviso "John/~/Smith"
e non "John~Smith"
.
Puoi usare split
per dividere il testo.
In alternativa, puoi anche usare match
come segue
var str = 'john smith~123 Street~Apt 4~New York~NY~12345';
matches = str.match(/[^~]+/g);
console.log(matches);
document.write(matches);
La regex [^~]+
corrisponderà a tutti i personaggi tranne ~
e restituirà le corrispondenze in un array. È quindi possibile estrarre le partite da esso.
str.split();
non funzionava in Firefox, ma funzionava sia in Chrome che in Firefox.
str.split();
funziona con Firefox e tutti i principali browser .
Zach aveva ragione. Usando il suo metodo è stato anche possibile creare un array apparentemente "multidimensionale". Ho creato un rapido esempio su 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: converti stringa in suddivisione JavaScript in array
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/
Questo string.split("~")[0];
fa fare le cose.
fonte: String.prototype.split ()
Un altro approccio funzionale che utilizza il curry e la composizione delle funzioni.
Quindi la prima cosa sarebbe la funzione split. Vogliamo trasformarlo "john smith~123 Street~Apt 4~New York~NY~12345"
in questo["john smith", "123 Street", "Apt 4", "New York", "NY", "12345"]
const split = (separator) => (text) => text.split(separator);
const splitByTilde = split('~');
Quindi ora possiamo usare la nostra splitByTilde
funzione specializzata . Esempio:
splitByTilde("john smith~123 Street~Apt 4~New York~NY~12345") // ["john smith", "123 Street", "Apt 4", "New York", "NY", "12345"]
Per ottenere il primo elemento possiamo usare l' list[0]
operatore. Costruiamo una first
funzione:
const first = (list) => list[0];
L'algoritmo è: diviso per i due punti e quindi ottiene il primo elemento dell'elenco specificato. Quindi possiamo comporre quelle funzioni per costruire la nostra getName
funzione finale . Costruire una compose
funzione con reduce
:
const compose = (...fns) => (value) => fns.reduceRight((acc, fn) => fn(acc), value);
E ora lo usa per comporre splitByTilde
e first
funzioni.
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("=");
Poiché la domanda di divisione delle virgole è duplicata a questa domanda, aggiungendola qui.
Se vuoi dividere un personaggio e gestire anche spazi bianchi extra che potrebbero seguire quel personaggio, cosa che spesso accade con le virgole, puoi usare replace
quindi split
, in questo modo:
var items = string.replace(/,\s+/, ",").split(',')
Usa questo codice -
function myFunction() {
var str = "How are you doing today?";
var res = str.split("/");
}