uCalc API Version: 5.7.0-preview.1 Released: 7/30/2026
Warning
uCalc API Preview Release Notice:This preview documentation describes the intended behavior of the API. It is not fully accurate or complete.The current preview build contains incomplete features, unoptimized performance, and is subject to breaking changes.Use of the preview version in your production code is not recommended.
[revisit]
This indicates a subsection of the match that will be saved as the match. If you want to match a pattern, but only want a subsection of the match to be counted as a match, then append the * indicator. Only one FocusMatch per pattern is effective. If you have more than one, then the first one encountered is selected. However, if you have optional or alternative patterns within [] and |, then you can technically have more than one, but only the one that is used will count.
With this rule:
Pattern: <>Replacement: ""
However, if you don't want the angle brackets to be part of the match you can do:Pattern: Pattern: <{text*}>
And you'll get:"abc" xyz "123" aaa "cde"