Hi folks, |
Re: How to enable a filter with regular expression with DXL I want to view the objects that the object heading attribute contains 'test' +[a-zA-Z](+[a-zA-Z] is a regular expression) Edward |
Re: How to enable a filter with regular expression with DXL Edward_Wang - Thu Jun 09 04:18:32 EDT 2011
The reqular expression is a string which you use in the contains filtering as any other string Module m = current string txt = "test+[a-zA-Z]" Filter f = contains(attribute "Object Heading", txt, false, true) set f filtering on |
Re: How to enable a filter with regular expression with DXL SystemAdmin - Thu Jun 09 04:46:04 EDT 2011
The reqular expression is a string which you use in the contains filtering as any other string Module m = current string txt = "test+[a-zA-Z]" Filter f = contains(attribute "Object Heading", txt, false, true) set f filtering on Edward |