You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please have incompatible search modifiers fixed vs perl / ignore.case be resolved at the call of these function and not defer to the str_* calls. Take the following example:
In this case, each of the match modifiers set an attribute to TRUE, though they are incompatible. If one were to examine pattern as is done in the example, the effects are unclear as they will be resolved later. A better method would have successive calls to the modifiers adjust pattern as appropriate. This can be done changing the functions. For example, fixed might become:
Please have incompatible search modifiers
fixed
vsperl
/ignore.case
be resolved at the call of these function and not defer to thestr_*
calls. Take the following example:In this case, each of the match modifiers set an attribute to
TRUE
, though they are incompatible. If one were to examinepattern
as is done in the example, the effects are unclear as they will be resolved later. A better method would have successive calls to the modifiers adjustpattern
as appropriate. This can be done changing the functions. For example,fixed
might become:Or
perl = FALSE
as another alternative.The text was updated successfully, but these errors were encountered: