Skip to content

String

Example

import * as p from '@vbudovski/paseri';
const schema = p.string();
const data = 'foo';
const result = schema.safeParse(data);
if (result.ok) {
// result.value typed as `string`.
}

Playground

Schema
Data
Result

Validators

min

Consists of at least length characters.

p.string().min(3);

max

Consists of at most length characters.

p.string().max(3);

length

Consists of exactly length characters.

p.string().length(3);

email

A valid email address.

p.string().email();

emoji

A valid emoji character.

p.string().emoji();

uuid

A valid UUIDΒ πŸ”—.

p.string().uuid();

nanoid

A valid Nano IDΒ πŸ”—.

p.string().nanoid();

includes

Contains the searchString.

p.string().includes('foo');

startsWith

Starts with the searchString.

p.string().startsWith('foo');

endsWith

Ends with the searchString.

p.string().endsWith('foo');

date

A valid ISO 8601Β πŸ”— date string YYYY-MM-DD.

p.string().date();

time

A valid ISO 8601Β πŸ”— time string hh:mm:ss[.s+].

p.string().time();

You can require a fixed precision by setting the precision option.

p.string().time({ precision: 3 });
// 01:02:03.123 βœ…
// 01:02:03.1234 ❌

datetime

A valid ISO 8601Β πŸ”— UTC datetime string YYYY-MM-DDThh:mm:ss[.s+]Z.

p.string().datetime();

You can require a fixed precision by setting the precision option.

p.string().datetime({ precision: 3 });
// 2020-01-02T01:02:03.123Z βœ…
// 2020-01-02T01:02:03.1234Z ❌

Non-UTC offsets are accepted by setting the offset option.

p.string().datetime({ offset: true });
// 2020-01-02T01:02:03.123Z βœ…
// 2020-01-02T01:02:03.123+02:30 βœ…
// 2020-01-02T01:02:03.123-0430 βœ…
// 2020-01-02T01:02:03.123 ❌

Offset-less (naΓ―ve) values are accepted by setting the local option.

p.string().datetime({ local: true });
// 2020-01-02T01:02:03.123Z βœ…
// 2020-01-02T01:02:03.123 βœ…

ip

A valid IPv4Β πŸ”— or IPv6Β πŸ”— address.

p.string().ip();
// 127.0.0.1 βœ…
// ::1 βœ…

The protocol version can be restricted.

p.string().ip({ version: 4 });
// 127.0.0.1 βœ…
// ::1 ❌

cidr

A valid IP address range in CIDRΒ πŸ”— notation.

p.string().cidr();
// 127.0.0.0/8 βœ…
// ::1/128 βœ…

The protocol version can be restricted.

p.string().cidr({ version: 4 });
// 127.0.0.0/8 βœ…
// ::1/128 ❌

regex

Matches the provided regex.

p.string().regex(/^a+$/);
// aaa βœ…
// aab ❌