Hello sathyaram_s,
location function, how I understood, simular to "".indexOf("" so, but for me required "".startsWith(" (in java world)
At current moment I resolved it problem in one way only (udf implementation)
Simple to define java function, like following:
public short startsWith( String str1, String str2 ) {
if( str1.startsWith(str2) )
return 1;
else
return 0;
}
and all.
Thanks a lot for advice.