xsd select multiple values from enumeration or equivalent type

前端 未结 3 1448
感动是毒
感动是毒 2021-01-22 03:27

I have the following XSD sample


    
        
             


        
3条回答
  •  臣服心动
    2021-01-22 03:55

    Seems like your use case is better handled with the use of Regular Expressions since you mentioned user input:

    .*day(,.*day)*
    

    You can replace *.day with (Monday|Tuesday|...).

提交回复
热议问题