comparison src/luan/modules/String.luan @ 1722:7d2ab44f7a59

remove String regex fns
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 29 Jul 2022 14:12:01 -0600
parents 5603ee8e2a71
children
comparison
equal deleted inserted replaced
1721:5c69d2e8bd75 1722:7d2ab44f7a59
10 String.digest_message = StringLuan.digest_message 10 String.digest_message = StringLuan.digest_message
11 String.encode = StringLuan.encode 11 String.encode = StringLuan.encode
12 String.ends_with = StringLuan.ends_with 12 String.ends_with = StringLuan.ends_with
13 String.find = StringLuan.find 13 String.find = StringLuan.find
14 String.format = StringLuan.format 14 String.format = StringLuan.format
15 String.gmatch = StringLuan.gmatch
16 String.gsub = StringLuan.gsub
17 String.lower = StringLuan.lower 15 String.lower = StringLuan.lower
18 String.match = StringLuan.match
19 String.matches = StringLuan.matches
20 String.regex = Boot.regex 16 String.regex = Boot.regex
21 String.regex_quote = Pattern.quote 17 String.regex_quote = Pattern.quote
22 String.rep = StringLuan.repeated -- remove
23 String.repeated = StringLuan.repeated 18 String.repeated = StringLuan.repeated
24 String.replace = StringLuan.replace 19 String.replace = StringLuan.replace
25 String.reverse = StringLuan.reverse 20 String.reverse = StringLuan.reverse
26 String.split = StringLuan.split 21 String.split = StringLuan.split
27 String.starts_with = StringLuan.starts_with 22 String.starts_with = StringLuan.starts_with