|
|
-
Re: Removing chars from a positionPrashant Kommireddi 2012-10-24, 14:58
You can use a combination of SUBSTRING and CONCAT. It would just be
easier and more efficient if you wrote your own UDF to do this. Sent from my iPhone On Oct 24, 2012, at 7:47 AM, jamal sasha <[EMAIL PROTECTED]> wrote: > Hi, > I have data in form > 12345,1 > 12346,1 > > From the field one (id), I want to remove 2nd and fourth digit and just > output the result > So basically > Output is > 12345,1,135 > 12346,1,136 > > How do I do this in pig? |