tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
22
Task/Regular-expressions/Argile/regular-expressions.argile
Normal file
22
Task/Regular-expressions/Argile/regular-expressions.argile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
use std, regex
|
||||
|
||||
(: matching :)
|
||||
if "some matchable string" =~ /^some" "+[a-z]*" "+string$/
|
||||
echo string matches
|
||||
else
|
||||
echo string "doesn't" match
|
||||
|
||||
(: replacing :)
|
||||
let t = strdup "some allocated string"
|
||||
t =~ s/a/"4"/g
|
||||
t =~ s/e/"3"/g
|
||||
t =~ s/i/"1"/g
|
||||
t =~ s/o/"0"/g
|
||||
t =~ s/s/$/g
|
||||
print t
|
||||
free t
|
||||
|
||||
(: flushing regex allocations :)
|
||||
uninit regex
|
||||
|
||||
check mem leak; use dbg (:optional:)
|
||||
Loading…
Add table
Add a link
Reference in a new issue