appending string to text file based on search string

Hi,

I need to append string "Hi" to the beginning of the lines containing some specific string. How can I achieve that?

Please help.

Malay

sed -e "s/.*some string.*/Hi&/g" in.txt > out.txt