Searching for text on screen with " in it

I want to search for this text on screen:MainMenuDashboardIsEnabledFeature" value=“false”

It seems the code I am using is having a problem with the extra " in it. Is there a way to disregard these like PHP’s " the code is black rather than red on the preview.

if ImageFound(8.0, (text: ““MainMenuDashboardIsEnabledFeature” value=“false””))

end if

The easiest thing to do is to use double angle brackets for the outer quotes, which allows you to have inner quotes without escaping them:

if ImageFound(8.0, (text: <<"MainMenuDashboardIsEnabledFeature" value="false">>))