How can I get N character from the right
I have to extract a substring in xslt 1.0 that is located at the end of a string so I basically need to get the substring from the right.
For example if I have 123456789123, I need to get 89123. Currently, I can use the function substring to get the string from the left. Any idea on how to accomplish this?
|