All,
I have what should be a simple problem. I have 2 tuples that are chararrays t1, t2 and want to do a comparision. using
x = FILTER y BY (t1 == t2);
results in zero (0) records.
x = FILTER y BY (t1 != t2);
is zero records. And
x = FILTER y BY (t1 matches t2);
is an error. Ideal would be a StrComp(t1, t2) filter func.
Is there a UDF for that?
Cheers,