From c531ebe95dd7ac5885a3f8ca359ea3f910b4027c Mon Sep 17 00:00:00 2001 From: CF Mitrah Date: Fri, 15 Mar 2024 21:01:22 +0530 Subject: [PATCH] Added a examples for lsIsNumeric() function --- .../01.functions/lsiscurrency/_arguments/locale.md | 1 + docs/03.reference/01.functions/lsisnumeric/_examples.md | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/03.reference/01.functions/lsiscurrency/_arguments/locale.md b/docs/03.reference/01.functions/lsiscurrency/_arguments/locale.md index e69de29bb..442a0d12e 100644 --- a/docs/03.reference/01.functions/lsiscurrency/_arguments/locale.md +++ b/docs/03.reference/01.functions/lsiscurrency/_arguments/locale.md @@ -0,0 +1 @@ +Locale to use instead of the locale of the page when processing the function \ No newline at end of file diff --git a/docs/03.reference/01.functions/lsisnumeric/_examples.md b/docs/03.reference/01.functions/lsisnumeric/_examples.md index 8bd5a1748..da51bfa5e 100644 --- a/docs/03.reference/01.functions/lsisnumeric/_examples.md +++ b/docs/03.reference/01.functions/lsisnumeric/_examples.md @@ -1 +1,7 @@ -*There are currently no examples for this function.* +```luceescript+trycf + writeoutput(lsIsNumeric('123') & "
"); + writeoutput(lsIsNumeric('five') & "
"); + writeoutput(lsIsNumeric('3.21') & "
"); + writeoutput(lsIsNumeric('0012') & "
"); + writeoutput(lsIsNumeric('00.01')); +``` \ No newline at end of file