I’ve written a small plugin to overcome my frustrations from using the @FILTER function in TCC. It’s possible no one else finds it frustrating (or possibly no one else uses @FILTER!), but I thought I’d offer it for download in case it’s helpful to other users.
For those not familiar with it, @FILTER extracts the requested characters from the supplied string. For example, to extract just the digits from a string you use it like this:
...
Read more
For those not familiar with it, @FILTER extracts the requested characters from the supplied string. For example, to extract just the digits from a string you use it like this:
Code:
d:\>echo %@filter[0123456789,ABC123.45abc]
12345
Read more