EDIT 2: just realized that this does not actually solve your problem, please ignore and see another answer! The code below will return the results for the case when the user inserted an apostrophe, which should not be, for example, "left his load."
FT, - CONTAINS , , ..
SELECT *
FROM table
WHERE CONTAINS ('value' OR Replace('value', '''',''))
EDIT: , ,
SELECT *
FROM table
WHERE CONTAINS ("this phrase" OR Replace("this phrase", '''',''))
. MSDN CONTAINS. , , ; CONTAINS('value') .