+ 3
What is simply meaning of regular expressions?
2 Respostas
+ 3
It's a sequence of characters that define a search pattern,so for example if you have a text 'pam pat par pum pim' and you would like to find only words beginning with 'pa' you could use a regular expression and it would find you only these 3 words: pam, pat, par
+ 1
Thanks 👍