#!/local/bin/python
import string
another_string="this is a string with \"is\" in it several times"
here=0
while 1:
	here = string.find(another_string,"is",here+1)
	if here == -1: break
	print another_string[:here]+"*"+another_string[here:here+2]+"*"+another_string[here+2:]
