check condition in xslt

前端 未结 2 1078
醉酒成梦
醉酒成梦 2021-01-23 14:51

Below is the input XML (Little Big) sorry for the bigger input XML and as well as output xml



   
     chapter unit         


        
2条回答
  •  南笙
    南笙 (楼主)
    2021-01-23 15:45

    This transformation:

    
            
            
    
          
    
         
            
              
                
                   
                     
                   
                   
                
              
            
         
    
         
          
          
          
          
            
              
                 chapter
                 unit 
                 page
              
            
          
         
    
         
           
             
           
         
    
         
          
           
          
         
    
    

    when applied on the provided XML document:

    
        
           
             chapter unit 1 page
        
            
                chapter unit 10~ page
            
            
                chapter unit page
            
            
                note lesson
            
         
            
                chapter unit 1 page
            
            
                description page
            
            
                chapter unit page
            
        
        
    
    

    produces the wanted, correct result:

    
       
          
             
                
                   chapter
                   unit 1
                   page
                
                
                   chapter
                   unit 10
                   page
                
                
                   chapter
                   unit 10
                   page
                
                
                   note lesson
                
             
             
                
                   chapter
                   unit 1
                   page
                
                
                   description page
                
                
                   chapter
                   unit 10
                   page
                
             
          
       
    
    

提交回复
热议问题