This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: substring function


That is interesting, Im not getting those results.  I will research deeper.
Thanks for your effort.

Mike

		-----Original Message-----
		From:	Agnes Kielen [mailto:a.kielen@home.nl]
		Sent:	Thursday, July 11, 2002 1:25 PM
		To:	xsl-list@lists.mulberrytech.com
		Subject:	Re: [xsl] substring function

		Hi Michael,
		I don't get it. When I try your first test:

		> <xsl:if test="string(WorkPhoneNumber)">
		> <xsl:value-of
select="concat('(',substring(WorkPhoneNumber,1,3),')
		>
	
',substring(WorkPhoneNumber,4,3),'-',substring(WorkPhoneNumber,7,4),substrin
		> g-after(WorkPhoneNumber, 'x'))"/>
		> </xsl:if>

		I get this: (123)456-7890333
		You don't get an 'x' because you ask for the characters
after the 'x'. So I
		changed it into:
		<xsl:if test="string(WorkPhoneNumber)">
		<xsl:value-of

	
select="concat('(',substring(WorkPhoneNumber,1,3),')',substring(WorkPhoneNum
	
ber,4,3),'-',substring(WorkPhoneNumber,7,4),'x',substring-after(WorkPhoneNum
		ber, 'x'))"/>
		</xsl:if>

		and got with this input:
		<WorkPhoneNumber>1234567890x333</WorkPhoneNumber>
		the following result:
		(123)456-7890x333

		I didn't check your second try. Hopes this helps, but not
sure.

		Agnes



		 XSL-List info and archive:
http://www.mulberrytech.com/xsl/xsl-list


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the sender and postmaster@amica.com.
**********************************************************************
 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]