|
RegexBuilder is a DSL for building regular expression. For example, the regular expression of IP address:
@ip_pattern = repeat(group(group(less_than_255()) + literal(".")), 3) + group(less_than_255())
Registered: 2007-12-09 13:46 Activity Percentile: 0% View project activity statistics. |
|