validator

A batteries-included, supercharged & customizable, string validation library for Arturo

credit card validator iban checker isbn validation validation library validator

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

valid?.iban "GB82 WEST 1234 5698 7654 32"
; => true

valid?.ip "127.0.0.1"
; => true

valid?.ip.v6 "127.0.0.1"
; => 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
OptionRelated parametersDescription
base58check base-58 encoding
cardcheck credit card number
datetest if string contains valid date
.format:specify date format (default: 'iso or yyyy-MM-dd) - could also be one of 'iso8601, 'short, 'long or any given string
emailverify e-mail address
floatingtest if string contains a parsable floating-point value
integertest if string contains a parsable integer value
ibanverify IBAN (International Bank Account Number)
ipverify IP addresses
.v4look for IPv4 addresses only
.v6look for IPv6 addresses only
isbnverify ISBN code
.10check for ISBN-10 codes only
.13check for ISBN-13 codes only
jsontest if string contains valid JSON
.strictenforce stricter, two-way validation
tldverify TLD (Top-Level Domain)
urlverify URL
Returns
  • :logical

Contributing

Validator.art has been designed with flexibility and extensibility in mind.

  • Have you noticed an error and want to fix sth?
  • Do you want to add more tests to a given validator to make it more robust?
  • Do you want to add a new one (Have a look into the sample validator!)

You are 100% welcome! Just make a PR and I'll be more than glad to merge it! 🚀


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.

  -
  
  7
Version
0.5.0Latest
License
MIT

Executable?
No
Requires
Arturo > 0.9.83