That's nto a trim function, trim removes spaces in most languages.
Try:
mid({table.field},4)
If you need a specific number of charaters after starting at the 4th, there's an additional optional parameter to the function of:
mid({table.field},4,X)
X is the number of characters.
-k