【发布时间】:2019-07-23 07:36:24
【问题描述】:
我有以下字符串之一:
(,QUESTION-3914~Please enter the unique identification number associated with the IRQ.|3~Greater Than|5~5,AND,QUESTION-3920~Select the contract action that applies to this IRQ.|5~Equal To|LOV1274~New Agreement,),AND,QUESTION-3921~If "New Agreement@comma@" which type of New Agreement is being requested?|5~Equal To|y~Yes,OR,NOT,(,QUESTION-3923~Will the Third Party Relationship support the implementation@comma@ pilot@comma@ launch@comma@ or operation of a New Activity (as defined in the New Activity Risk Management Policy)?|5~Equal To|y~Yes,)
我想要这个字符串所需的输出是这样的:-
(,QUESTION-3914|3|5,AND,QUESTION-3920|5|LOV1274,),AND,QUESTION-3921|5|y,OR,NOT,(,QUESTION-3923)|5|y,)
我该怎么办?
【问题讨论】:
-
从 A 到 B 的规则是什么?
-
您应该过滤字符串,使其不包含您不包含的部分。
-
@AlexanderDmitriev:我不明白你。