Trying to regex for strings longer than 22 characters
The regex would be:
/'name'=>'[^']{23,}?'/i
This will match any line with a 'name' that is 23 characters or longer.
This will match "At least 22 any characters"
.{22,}
The regex would be:
/'name'=>'[^']{23,}?'/i
This will match any line with a 'name' that is 23 characters or longer.
This will match "At least 22 any characters"
.{22,}