Nested conditional if else statements in xpath

前端 未结 4 1074
迷失自我
迷失自我 2020-12-31 15:12

I have this XML:


    No
    Yes
    
           


        
4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-31 15:39

    Try this

    if (condition) 
    then 
      if (condition) stmnt 
      else stmnt 
    else 
      if (condition) stmnt 
      else stmnt 
    

提交回复
热议问题