comparison src/luan/modules/String.luan @ 1715:ad44e849c60c

add String.regex_compile
author Franklin Schmidt <fschmidt@gmail.com>
date Sat, 23 Jul 2022 21:53:04 -0600
parents f7e2df85fc0a
children b82767112d8e
comparison
equal deleted inserted replaced
1714:31a82b0d0a87 1715:ad44e849c60c
12 String.gmatch = StringLuan.gmatch 12 String.gmatch = StringLuan.gmatch
13 String.gsub = StringLuan.gsub 13 String.gsub = StringLuan.gsub
14 String.lower = StringLuan.lower 14 String.lower = StringLuan.lower
15 String.match = StringLuan.match 15 String.match = StringLuan.match
16 String.matches = StringLuan.matches 16 String.matches = StringLuan.matches
17 String.regex_compile = Pattern.compile
17 String.regex_quote = Pattern.quote 18 String.regex_quote = Pattern.quote
18 String.rep = StringLuan.rep 19 String.rep = StringLuan.rep
19 String.reverse = StringLuan.reverse 20 String.reverse = StringLuan.reverse
20 String.split = StringLuan.split 21 String.split = StringLuan.split
21 String.sub = StringLuan.sub 22 String.sub = StringLuan.sub