regex - How to Filter using Regular Expression in Pig latin -
i have find name given first letter 'p' , last letter 'l'. in sql, give 'p%%l'. in pig latin commands, how can given.
you'd use filter command regex e.g.
x = filter (name matches '\ap\w*l\b');
Comments
Post a Comment