+ 1
Means of regular expression ?
2 Antworten
+ 1
Did you ever tried to search for a string in another string? Well, instead of strings you can search for patterns. Those patterns are the regular expressions.
For example, instead of looping through a string and check if every character is a 0, you can check if a pattern is a number of zeros that start and end the string.
If you want I can provide a code :)