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: Special Character in XSL Expression.


> Then I want to check whether content is presetn in ""
>
> <xsl:if test="value=""">
>
> How can I handle this?

I'm not clear exactly what you want to test. To test whether value is an
empty string, use

  test="value=''"

To test if value is the string consisting of two double quotation marks, use

  test="value='&quot;&quot;'"

Mike Kay


 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]