9951 explained code solutions for 126 technologies


luaUsing regex


local str = 'Hi you all';
str:match('l+')ctrl + c
'Hi you all'

sample string to match regex in

match

match given string with specified regex

'l+'

sample regex (will match all occurrences of l letter)