Is there an XSL “contains” directive?

后端 未结 6 860
一向
一向 2020-12-28 11:49

I have the following snippet of XSL:

  
    
    

        
6条回答
  •  再見小時候
    2020-12-28 12:02

    Use the standard XPath function contains().

    Function: boolean contains(string, string)

    The contains function returns true if the first argument string contains the second argument string, and otherwise returns false

提交回复
热议问题