From cbd876673a4accc23aca16c015c20b819a2685b5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 1 Nov 2017 15:58:19 -0700 Subject: [PATCH] Added gsub. --- lib/utils.nom | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/utils.nom b/lib/utils.nom index c65ac2a..b398827 100644 --- a/lib/utils.nom +++ b/lib/utils.nom @@ -22,6 +22,11 @@ parse [join %strs] as: join %strs with glue "" compile [capitalize %str, %str capitalized] to: "(\(%str as lua)):gsub('%l', string.upper, 1)" +compile [%str with %patt replaced with %sub, %str s/%patt/%sub] to: + "((\(%str as lua)):gsub(\(%patt as lua), \(%sub as lua)))" +compile [%str with %patt replaced with %sub %n times, %str s/%patt/%sub/%n] to: + "((\(%str as lua)):gsub(\(%patt as lua), \(%sub as lua), \(%n as lua)))" + compile [say %str] to: ".." |nomsu:writeln(nomsu:stringify(\(%str as lua))) @@ -42,6 +47,7 @@ rule [random choice from %elements, random choice %elements, random %elements] = =lua "\(%elements)[math.random(#\(%elements))]" # Math functions +compile [% as number] to: "tonumber(\(% as lua))" compile [abs %, absolute value of %, | % |] to: "math.abs(\(% as lua))" compile [sqrt %, square root of %] to: "math.sqrt(\(% as lua))" compile [sin %, sine %] to: "math.sin(\(% as lua))"