Reputation: 1113
I got this regular expression for selection of text between tags.
preg_match_all('/<t>(.*?)<\/t>/s', $text, $match);
what I need is to edit this expression so it would select the text only if it is at least 3 characters long... Is it possible? If yes, how?
Upvotes: 0
Views: 136