Hi
I have a dataview. I would like to apply a filter on the dataview on a
column with datatype system.string. I have filter with wild char *.
I need to support wild chars * and ? in the filter expression
anywhere? How do I work around it.
Please help me to solve the same.
Thanks in advance
-Cnu
I have a dataview. I would like to apply a filter on the dataview on a
column with datatype system.string. I have filter with wild char *.
>>Operator LIKE is used to include only values that match a pattern with wildcards. Wildcard character is * or >>%, it can be at the beginning of a pattern '*value', at the end 'value*', or at both '*value*'. Wildcard in the >>>>middle of a patern 'va*lue' is not allowed.
I need to support wild chars * and ? in the filter expression
anywhere? How do I work around it.
Please help me to solve the same.
Thanks in advance
-Cnu
Comment