“Bash tokenize string” Respostas de código

Bash tokenize string

For any delimiters, like ';'

$ string="john;is;17;years;old"
$ IFS=';' tokens=( $string )
$ echo ${tokens[*]}
Bunny Hop

Bash tokenize string

For Space delimiter

$ string="john is 17 years old"
$ tokens=( $string )
$ echo ${tokens[*]}
Bunny Hop

Respostas semelhantes a “Bash tokenize string”

Perguntas semelhantes a “Bash tokenize string”

Mais respostas relacionadas para “Bash tokenize string” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código