0 Members and 1 Guest are viewing this topic.
I don't understand you. What you exactly want to do? Use macros for other fields?
but we need the same type of function for other fields espec Title
But this feature is already in app. Invoke context menu for the tag field and select "Expressions..." menu item (Make sure that the "allow in-place expressions" option is switched on in app settings)
are you f*g kidding?
Truncate/Delete (at Start/End/Position), Insert (at Start/End/Position), and an enhanced/extended Replace (at Start/End/Position)
It can be replaced by %StrLeft, %StrRight, %StrCopy and %StrPos macros. Just look at list of macros.
most of the %Str functions COPY - they do not move or replace (or delete)
the %Replace function is likewise very limited - it ONLY replaces a KNOWN string!!!
what the text is - it is its POSITION
What is move in your opinion here? What is should do?To delete part of string you can copy left and right parts of string (%StrLeft, %StrRight). Yes, may be Delete(X, 1, 3) will look simpler, but the task can be done with current macros set.What you mean? Can you provide an example where current implementation cannot be work because of limitation?1) StrPos and Length returns a position.2) StrLeft / StrRight supports String in the B argument (it will do the StrPos by itself)P.S. Anyway, I still waiting an examples scenarios that cannot be done via our macros language. Abstract words make no sense here.
P.S. Anyway, I still waiting an examples scenarios that cannot be done via our macros language