A batteries-included, supercharged & customizable, string validation library for Arturo
Validator
A 🔋-included, supercharged & customizable,
string validation library for Arturo
What does this package do?
This package provides a function (valid?
) that allows to check and validate strings, based on different built-in schemes/patterns, e.g e-mails, urls, etc.
How do I use it?
Simply import
it and use the included valid?
function:
import "validator"!
valid?.url "https://arturo-lang.io"
; => true
valid?.email "loremIpsum@"
; => false
And we may also check more than one strings:
valid?.email ["my@email.com", "info@google.com"]
; => true
Tip
Different type of checks may accept different extra params, so you'd better have a look into the reference first! 😉
Function reference
valid?
Description
check if given string is valid
Usage
valid? str :string :block
Attributes
Option | Related parameters | Description |
---|---|---|
base58 | check base-58 encoding | |
verify e-mail address | ||
floating | test if string contains a parsable floating-point value | |
integer | test if string contains a parsable integer value | |
ip | verify IP addresses | |
.v4 | look for IPv4 addresses only | |
.v6 | look for IPv6 addresses only | |
isbn | verify ISBN code | |
.10 | check for ISBN-10 codes only | |
.13 | check for ISBN-13 codes only | |
url | verify URL |
Returns
- :logical
License
MIT License
Copyright (c) 2024 Yanis Zafirópulos
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0.5.0 | 7 November 2024 | 78455 / 22 files |
0.4.0 | 6 November 2024 | 48474 / 20 files |
0.3.0 | 6 November 2024 | 44517 / 19 files |
0.2.0 | 12 September 2024 | 40335 / 17 files |
0.1.0 | 11 September 2024 | 32155 / 15 files |
0.0.5 | 9 September 2024 | 22424 / 14 files |
0.0.4 | 4 September 2024 | 20483 / 13 files |
0.0.3 | 3 September 2024 | 19457 / 12 files |
0.0.2 | 31 August 2024 | 17648 / 10 files |
0.0.1 | 28 August 2024 | 13337 / 8 files |
No dependencies.