Is there any difference between following commands?
Code:
If mwd.EndsWith("ous") Then mwd = mwd.Replace("ous","ás")
Code:
If mwd Like "*ous" Then mwd = mwd.Replace("ous","ás")