Skip to content

Commit

Permalink
add german number example for LsIsNumeric
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer authored Mar 26, 2024
1 parent df752f0 commit 0f1e006
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/03.reference/01.functions/lsisnumeric/_examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@
writeoutput(lsIsNumeric('3.21') & "<br>");
writeoutput(lsIsNumeric('0012') & "<br>");
writeoutput(lsIsNumeric('00.01'));
```
writeoutput(lsIsNumeric('1.321,00') & "<br>"); // false
writeoutput(lsIsNumeric('1.321,00', "german") & "<br>"); // true
```

0 comments on commit 0f1e006

Please sign in to comment.