Mercurial Hosting > luan
view src/luan/modules/String.luan @ 2092:429827024f4e ssltesting
inline local_https.sh + minor
| author | Violet7 |
|---|---|
| date | Fri, 12 Dec 2025 18:53:15 -0800 |
| parents | 49e2103ebf6a |
| children |
line wrap: on
line source
require "java" local StringLuan = require "java:luan.modules.StringLuan" local Pattern = require "java:java.util.regex.Pattern" local Matcher = require "java:java.util.regex.Matcher" local Boot = require "luan:Boot.luan" local String = {} String.char = StringLuan.char_ String.char_to_int = StringLuan.char_to_int String.contains = StringLuan.contains String.digest_message = StringLuan.digest_message String.encode = StringLuan.encode String.ends_with = StringLuan.ends_with String.find = StringLuan.find String.find_reverse = StringLuan.find_reverse String.format = StringLuan.format String.lower = StringLuan.lower String.regex = Boot.regex String.regex_quote = Pattern.quote String.regex_quote_replacement = Matcher.quoteReplacement String.repeated = StringLuan.repeated String.replace = StringLuan.replace String.reverse = StringLuan.reverse String.split = StringLuan.split String.starts_with = StringLuan.starts_with String.sub = StringLuan.sub String.to_binary = StringLuan.to_binary String.to_number = StringLuan.to_number String.trim = StringLuan.trim String.unicode = StringLuan.unicode String.upper = StringLuan.upper return String
