cancel
Showing results for 
Search instead for 
Did you mean: 

UDF

Former Member
0 Kudos

Hi All,

I have String Array.

if the arr[0] = "Description"

and arr[1] startswith "*"

i want to skip these values and send arr[3] value to target field.

Please tel me how to acheive this using UDF.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

To get your requirement, only put in the resultlist the field You need depend on your condition.


if (arr[0].equals("Description") && arr[1].substring(0,1) .equals("*"){
 resultList.addValue(arr[3]);
}else{
//put values you want
}

Regards

Ivan

Answers (0)