“Podziel tekst JavaScript” Kod odpowiedzi

JavaScript eksploduje

//split into array of strings.
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Grepper

podzielone słowa w JavaScript

var str = "This is an amazing sentence.";
var words = str.split(" ");
console.log(words);
//["This", "is", "an", "amazing", "sentence."]
Encouraging NeoBliz

Podziel w JavaScript

/* split methods splits string object into array of strings  
and join method changes element of array into a string */
const name= "Shirshak Kandel"
const nameWithDash=name.split(" ").join("-")
console.log(nameWithDash);//Shirshak-kandel
Sab Tech

Split JavaScript

var names = 'Harry ;Fred Barney; Helen Rigby ; Bill Abel ;Chris Hand ';

console.log(names);

var re = /\s*(?:;|$)\s*/;
var nameList = names.split(re);

console.log(nameList);
Courageous Chipmunk

split () JavaScript

let countWords = function(sentence){
    return sentence.split(' ').length;
}

console.log(countWords('Type any sentence here'));

//result will be '4'(for words in the sentence)
Rodrigo Palazon

Podziel tekst JavaScript

const splitText = (string) => {
  const newText = string
    .split(/((?:\w+ ){1})/g)
    .filter(Boolean)
    .join("\n");
  return newText
};
console.log(splitText("Hello, world"));
//Hello,
//world
mrmalik610

Odpowiedzi podobne do “Podziel tekst JavaScript”

Pytania podobne do “Podziel tekst JavaScript”

Więcej pokrewnych odpowiedzi na “Podziel tekst JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu