References

String.split()

Leírás

Visszatér egy tömbbel, melynek elem az elválasztó string közti alstringjei az eredeti String példánynak. Stringet alrészekre bont, és tömbben helyezi el.

Szintaxis

split(separator)
split(separator, limit)

Példa

const str = 'The quick brown fox jumps over the lazy dog.'
 
const words = str.split(' ')
console.log(words[3])
// Expected output: "fox"
 
const chars = str.split('')
console.log(chars[8])
// Expected output: "k"
 
const strCopy = str.split()
console.log(strCopy)
// Expected output: Array ["The quick brown fox jumps over the lazy dog."]
 
const text = 'Apples are round, and apples are juicy.'
 
const strArray = text.split('', 3)
console.log(strArray)
// Expected output: Array ["Apple", "are", "round"]
in this article
back to top