I can do this with no problem using the query functionality in the GUI, putting
in the WHERE field, but I need to do this programmatically.name matches "aubpsf?????.a and not aubpsf??000.a"
I have tried:
Code: Select all
string tt = @wquery("acperm", "name matches "aubpsf?????.a and not aubpsf??000.a"") but this throws an error because of the nested double quotes. Code: Select all
string tt = @wquery("acperm", "name matches aubpsf?????.a and not aubpsf??000.a") but this throws an error because of the ambiguity of the and operator. 