Hi So I ran into a very odd and specific issue. I trx to regex-Filter a field, lets call it "parent". The field has the following structure: (not actual, the field I wanna regex, but easier to show the issue, so other options like "use .* or something wont work) C:\\Windows\\System32\\test\\ I try to regex this field like: "C:\\\\Windows\\\\System32\\\\test\\\\" This does not work But as soon as I delete this second folder "C:\\\\Windows\\\\.*\\\\test\\\\" it works. And this will be over all fields, no matter which field with a path I take, as soon as I enter this second folder, it will immediately stop working. I also tried to add different special characters, all numbers and letters, space, tab etc. also tried to change the "\\\\", Adding ".*System32.*" but nothing works out. Someone else ever ran into this issue and got a solution?
... View more