RegEx-如何使用grep提取第二个匹配项

时间:2019-03-12 22:18:39

标签: regex grep

如何在ubuntu中使用grep命令提取此文本中的第二个数字。

14219,98.2,31-s,19225
39219,92.7,31-s,29225
39219,38.7,31-s,29225

需要输出:

98.2
92.7
38.7

谢谢

1 个答案:

答案 0 :(得分:-2)

可能与该帖子重复:Parsing the first column of a csv file to a new file

根据您的情况,您可以使用cat file.txt | cut -d, -f2提取第二列。