.net - Match Quotes Delimited Multichoice Values -
@wictor
this question sequel previous question
match quotes delimited strings in previous match
anyway mult-choice (checkboxes) on form creates following string values in nintex workflow action
[x] elearning [x] online payroll ......
{"results":[{"id":3,"value":"elearning"},{"id":4,"value":"online payroll"}]}
taking on previous advice want
- positive ahead start matching after "results"
- exclude non characters
- exclude "id" delimited quotes not part of word
- exclude "value"
- match else
this attempt replicate previous approach.
(?<="results":\["(^"value")(?:[^"]*",")*)[^"]+
as usual doesn't work , continued staring @ expresso's terse error messages gives me headache :-(
regex needs government health warning imho! sos!!!
Comments
Post a Comment