ss="abcdefghi" my_array=( `echo $ss | grep -o . ` ) # split word into array echo ${my_array[2]} give c i=0 echo ${my_array[$i]}${my_array[$i+1]}xxx give : abxxx