XSLT multiple string replacement with recursion

前端 未结 5 1595
花落未央
花落未央 2021-01-16 13:38

I have been attempting to perform multiple (different) string replacement with recursion and I have hit a roadblock. I have sucessfully gotten the first replacement to work

5条回答
  •  死守一世寂寞
    2021-01-16 14:24

    The problem may stem from differences in the encoding of newline, causing the XSLT processor not to recognize the CRLF in your match strings. I suggest testing with using comma in place of newline. The following will give you the expected result when called with the parameter "abc,def,ghi":

    
      
      
        
            
            

提交回复
热议问题