Re: [xsl] Pattern Substring

Subject: Re: [xsl] Pattern Substring
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Thu, 04 Mar 2010 12:26:53 -0500
Senthil,

At 10:57 PM 3/3/2010, you wrote:
Hi Wendell,
Yes, I admit that the code I have written is not completely correct.
My data format is that it would only contains "055" and the option
number is always prefixed and suffixed with one space char.

Possible  Values are
 Text1 055-0001 Text1
 Text2 X055-0002 Text2
 Text1 J055-0003 Text1
 Text1 K055-0004 Text1

I want to get only the options numbers from the above value.

You could try


substring-before(substring-after(normalize-space(.),' '),' ')

but note this will be prone to break if (when) we see variation from the pattern on which it depends.

While the examples you have given follow that pattern, they also follow an indefinite number of other patterns. That is, we still don't have a specification of the problem, meaning an actual solution is impossible.

Cheers, Wendell



======================================================================
Wendell Piez                            mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================

Current Thread