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
Boost has conditional replacement syntax, where you can choose between two substitutions based on whether a given group was matched or not. That feature would be really useful, although I'd probably change the syntax to ${cond?true:false} (as neither ? nor : are part of valid group names).
The text was updated successfully, but these errors were encountered:
A limited way of this is possible in Retina 1.0 by doing something like ${$1} where $1 evaluates to which other group you want to include. Not quite as flexible, but it's a start.
Boost has conditional replacement syntax, where you can choose between two substitutions based on whether a given group was matched or not. That feature would be really useful, although I'd probably change the syntax to
${cond?true:false}
(as neither?
nor:
are part of valid group names).The text was updated successfully, but these errors were encountered: