Hi,
Why my argument is not recognized ? However this is a string...
Your argument is an array e.g String[] inp, but in your UDF I think you just used
inp.toString(); which would convert it into what you see above. To obtain the correct value, use its array position e.g to get first entry of inp[] array, it should be inp[0].toString();.
Regards,
Mark