小编Mah*_*ari的帖子

如何拆分输出并将其存储在数组中?

这是输出:

3,aac-lc, 93.8, aaclc, 77.3, h.264, 1024.6, h.264, 1029.1, 31, 31, 0,0,0.000000,31,31,0,0,0.000000,7,0,0,0.000000,30,1280 720,10,0,0,0.000000,30,1280 720
Run Code Online (Sandbox Code Playgroud)

我尝试了 2 个场景:

  1. 存储在数组中

      @arr=split(',',$stats);
      echo "statistics: $stats"
    
    Run Code Online (Sandbox Code Playgroud)
  2. 存储在变量中

     echo $stats | cut -d ',' -f | read s1
     echo $s1
    
    Run Code Online (Sandbox Code Playgroud)

但是这两种情况都不起作用。

bash

10
推荐指数
1
解决办法
2万
查看次数

标签 统计

bash ×1