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
When using %header.append.matchFromBody% multiple times, it happens that the subsequent calls are overwritten by the parameters of the first occurrence.
Example:
%header.append.matchFromBody(subject,"Here is the transcription:\s*(?=(.{100}))(.*)\s*Listen and reply",1)%
. . .
%header.append.matchFromBody(subject,"test","<tag testtag>")%
Workaround: use matchTextFromBody and the clipboard:
%matchTextFromBody("Here is the transcription:\s*(?=(.{100}))(.*)\s*Listen and reply",1,toclipboard)%
%header.append(subject,clipboard)%
%header.append(subject,"... <tag vox><assign [email protected]>")%
The text was updated successfully, but these errors were encountered:
RealRaven2000
changed the title
using %header.append.matchFromBody% multiple times in a template inserts 1st argument
using %header.append.matchFromBody% multiple times in a template reinserts 1st arguments
Jan 4, 2025
When using
%header.append.matchFromBody%
multiple times, it happens that the subsequent calls are overwritten by the parameters of the first occurrence.Example:
Workaround: use
matchTextFromBody
and the clipboard:The text was updated successfully, but these errors were encountered: