Launching a SaaS?·Collect waitlist signups before you build — before.run
SandboxPatternsDetectDocsChangelog
Crypto
#monero
#xmr
#crypto
#address

Monero Address

Matches a Monero (XMR) standard address — starts with 4 and is exactly 95 Base58 characters.

Monero payment validationPrivacy-focused crypto appsExchange integrations
/
/
Safe
Test String
1 match
44'4' — literal character
[…]Character class […]Matches any single character listed in this set
0-90-90-9 — range from '0' to '9'
AA'A' — literal character
BB'B' — literal character
[…]{93}Character class […]Matches any single character listed in this set — repeated exactly 93 times · {93} — exactly 93 times
1-91-91-9 — range from '1' to '9'
A-HA-HA-H — range from 'A' to 'H'
J-NJ-NJ-N — range from 'J' to 'N'
P-ZP-ZP-Z — range from 'P' to 'Z'
a-ka-ka-k — range from 'a' to 'k'
m-zm-zm-z — range from 'm' to 'z'
Pattern: 32 charsInput: 95 chars
100% client-side · private

Valid Examples

  • 44AFFq5kSiGBoZ4NMDwYtN18obc8AemS33DBLWs3H7otXft3XjrpDtQGv7SqSsaBYBb98uNbr2VBBEt7f2wfn3RVGQBEP3A

Invalid Examples

  • 1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2
  • 0xde0B295669a9FD93d5F28D9
  • short

Usage & Integration

Validate Monero Address natively in your backend or frontend without copying regex strings.

Node / Edge

import { validate } from '@regexto/validators';

validate('monero-address', '...');

Python

from regexto_validators import validate

validate("monero-address", "...")

Go

import "github.com/regex-to/validators-go"

valid, err := validators.Validate("monero-address", "...")

PHP

use RegexTo\Validators\Validator;

Validator::validate('monero-address', '...');

Rust

use regexto_validators::validate;

let is_valid = validate("monero-address", "...").unwrap();