Nth word in a string variable

前端 未结 6 1495
夕颜
夕颜 2020-12-13 08:05

In Bash, I want to get the Nth word of a string hold by a variable.

For instance:

STRING=\"one two three four\"
N=3

Result:

6条回答
  •  一整个雨季
    2020-12-13 08:39

    A file containing some statements :

    cat test.txt
    

    Result :

    This is the 1st Statement
    This is the 2nd Statement
    This is the 3rd Statement
    This is the 4th Statement
    This is the 5th Statement
    

    So, to print the 4th word of this statement type :

    cat test.txt |awk '{print $4}'
    

    Output :

    1st
    2nd
    3rd
    4th
    5th
    

提交回复
热议问题