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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -