xsl-list
[Top] [All Lists]

Re: [xsl] Format Phone number

2009-12-21 04:42:07
You should use this declaration:
   <xsl:decimal-format name="staff" grouping-separator="-"/>

and then, e.g.,
   <xsl:value-of select='format-number( 0112223333, "000-000-0000", "staff")'/>

This also handles a leading zero, which may or may not be necessary in
your case.
-W

On Mon, Dec 21, 2009 at 8:20 AM, Anil Kumar Veeramalli
<anil(_dot_)v(_at_)frescoinformatics(_dot_)com> wrote:

Hi,

I want to format phone number xxx-xxx-xxxx format.

I am using XSL1.0
I tried with below approaches but didn't work

1) <xsl:decimal-format name="staff" digit="D" />
<xsl:value-of select='format-number(123456789, "DDD-DDD-DDDD", "staff")' />
2) <xsl:value-of select='format-number(123456789, "###-###-####")' />

what  is the correct approach to format the number.

Thanks,
Anil


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>