Can any one please let me know, what does the following UDF
public void UDF1 (String[] a,String[] b,ResultList result,Container container)
{
//write your code here
try {
for(int i=0;i<(a.length);i++){
if((a<i>.equals("ABC")))
{ result.addValue(b<i>);
}
}
} catch(ArrayIndexOutOfBoundsException e) {
}
Regards