XSL and String Manipulation

webmasterbeta

New Member
Using XSL:

How can I get the left portion of the following string from the last period?

1.4.2.3.1

becomes

1.4.2.3

substring-before only returns the string before the first period, and substring-after returns the entire string after the first period.

Any ideas?

Thanks in advance
 
Back
Top