Just as a note, I didn’t see this as an actual response, string trim (in general, none of the languages I’ve used it in vary in this regard), and it’s variants of left and right, does not “capture” data at all. It simply removes it. I suppose there are some convoluted ways to use it, but, as shown above, there’s much easier and simpler ways to do it.
To kind of wrap the previous responses up, as someone said, with languages in general, there’s always multiple different ways to approach a problem. However, with what you’re doing and how it would be implemented, I think
From an xlate standpoint, xlatesubstr is probably the simplest, though it probably takes multiple lines to accomplish. This allows easy reading via the xlate panes, rather than having to drill down and really look at the code, it’s all pretty much right there.
From a pure TCL standpoint clock is probably the simplest. I find TCL’s clock implementation a bit unwieldy, but it’s all there in one neat little package.
string range is probably second. It’s essentially the same as xlatesubstr but strictly in TCL. Takes multiple lines but is easy to read.
regex from a purely personal standpoint I would avoid. regex is essentially it’s own little language by itself. You can do some absolute magic with regex but it’s not fun to try to parse it out/troubleshoot.