Given the following example:
str = 'deriv*dot(N,iv)';
expr = 'iv';
idx = regexp(str,expr);
This returns idx with 4 and 13. How do I only find the 'iv' that is NOT part of a word?
I tried messing around with Lookaround Operators for expr, but could not get the result I desired. Thanks for the help.