Skip to Content
0
Former Member
Apr 17, 2009 at 08:33 PM

Need clarification on UDF

27 Views

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