Regular Expression Functions

scop.re.find(s,regex)

Regular expression finder
returns: string
> = scop.re.find('<html><b>Demo</b></html>','<b>(.*?)</b>')
<b>Demo</b>

scop.re.match(s,regex)

Matches regular expressions
returns: boolean
> = scop.re.match('<html><b>Demo</b></html>','<b>(.*?)</b>')
true

scop.re.replace(s,regex,replacement)

Finds a string using a regular expression and replaces it
returns: string