1

私はxmlを持っていますが、これには次のような行があります

#<pdfrwt "2"> n_vars code(1) ... code1(2).... code1(n_vars) code2(1) ... code2(n_vars) code3(1) ... code3(n_vars)</pdfrwt>

したがって、実際には、毎回「n_vars」に応じて、3 つのクラス、つまり code1、code2、code3 に対応する一連の数字があり、これらのクラスごとに「n_vars」エントリを取得します。どうすればbashで行を賢く読み(わかりました、これは知っています;-)、「n_vars」多次元変数、つまり次のようなものを割り当てることができますか

output1[1]=code1(1)
output1[2]=code1(2)
...
output1[n]=code1(n)
and likewise

output2[1]=code2(1)
..
output2[1]=code2(1)

前もって感謝します

アレックス

4

1 に答える 1

1

行全体を配列に読み取ってから、配列のスライスを取得できます。

# hdr gets the first field, n_vars gets the second, and rest gets
# the remaining values
read hdr n_vars rest < file

# Split rest into a proper array
array=( $rest )
# Copy the desired slices from array into the three output arrays.
output1=( "${array[@]:0:n_vars}")
output2=( "${array[@]:n_vars:n_vars}" )
output3=( "${array[@]:2*n_vars:n_vars}" )

値にアクセスする方法の例:

echo ${output1[0]}    # The first element of output1
echo ${output2[3]}    # The fourth element of output2
echo ${output3[$#output3]}  # The last element of output3
echo "${output1[@]}"   # All the elements of output1
于 2012-12-12T20:11:55.337 に答える