How to read a specific column into variable

Hi,

I want to read the 3rd column of the v_string into a script variable v_3rd, can anyone help howto?

v_string="This is for testing only"

Thanks!
Victor Cheung

$ echo 'This is for testing only' | cut -f 3 -d' ' 
for
$ echo 'This is for testing only' | awk '{ print $3 }'
for

Hi Agn,

Thanks!

Victor Cheung