Skip to content

MahmoudFayed/regex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Regex-ring

An easy to use pattern matching for Ring.

Download

ringpm install regex

Example

load "regex.ring"
	
ptrn = "ring"
str = "ring without gems is not a real ring"
re = new Regex(ptrn)
see re.match(str)
# output: ring

for match in re.matchall(str)
    see match
next
/* 
output:
   ring
   ring
*/

License

Regex-ring is released under the MIT License.

About

An easy to use pattern matching for Ring.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages