Classic ASP similar work like PHP preg_match?

entesebit

New Member
In PHP, i have this following works done which is a REGEX taking any word contains "lower-case letters". Like,\[code\]<?php $name = "F. Chris a. TIN-G ianX"; $words = explode(" ", $name); foreach ($words as $w) { if (preg_match('/[a-z]{1,}/', $w)) { echo $w." "; } }?>\[/code\]It will return:\[code\]Chris a. ianX\[/code\](Hope there will be better query) Whatever it works for me in PHP, but i want it in Classic ASP again.
How can i get it?
 
Back
Top