I have a variable with value like this :
$sentence = "When it comes time to renew your auto insurance policy, be aware of how your carrier handles renewals";
And I have array variables with value below :
$searches = array('aware', 'aware of', 'be aware', 'be aware of');
$replaces = array('conscious', 'conscious of', 'remember', 'concentrate on');
I would like to find just 'be aware of' and then replace with 'concentrate on'. Output like below :
When it comes time to renew your auto insurance policy, concentrate on how your carrier handles renewals
Search only 'be aware of' as relevant synonym replacement not others. Thanks for your help.
Ok, here the new code:
$searches = array('aware of', 'be aware of', 'be aware', 'aware');
$replaces = array('conscious of', 'concentrate on', 'remember', 'conscious');
This is a dynamic array ($searches), I hope you understand...and we know to get the best synonym replacement is use ''be aware of' to replace with 'concentrate on'. Output like below :
When it comes time to renew your auto insurance policy, concentrate on how your carrier handles renewals
\banchors around them. – mario Jan 27 at 9:27