Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「こんにちは、お元気ですか」という文字列があります。以下に示すように、この文字列を配列に入れたいと思います。しかし、私はスペースを維持したい。それを行う方法についてのアイデアはありますか?
a[0] a[1] a[2] 3 4 5 6 .... should have h i <space> h o w <space> .... and so on.
eval a=( $(echo "hi how are you" | sed "s/\(.\)/'\1' /g") )
それは本当に醜いです、多分誰かがそれなしで何かを思い付くことができevalます...
eval