sed remove everything up to the pattern

I have been search all over the internet to find a solution to this.
I have a file that looks like:

-a ItemConfig.custom=true
-a Config.custom=true
go -t malu
-t Use=true

I want to get "malu" as output, and the werid thing is the blank before go is neither space nor tab.
what's the sed command to get the line contains "go -t" and remove everything up to -t????:confused:

Run your file thru od to see the control character embedded in it and then work on the sed.

od -c file

Hope this helps point you in the right direction:

sed -ne '/go/s/go -t //p' file.txt

returns only 'malu'

More info here:
http://sed.sourceforge.net/sed1line.txt

sed -n 's/.*go -t //p'

to actually also remove anything weird before the "go".

awk '/go/{print $NF}' file