FormValidator::LazyWay::Rule::String::JA - Messages of String Rule


FormValidator-LazyWay documentation Contained in the FormValidator-LazyWay distribution.

Index


Code Index:

NAME

Top

FormValidator::LazyWay::Rule::String::JA - Messages of String Rule

METHOD

Top

length

string

ascii

nonsymbol_ascii

alphabet

number


FormValidator-LazyWay documentation Contained in the FormValidator-LazyWay distribution.

package FormValidator::LazyWay::Rule::String::JA;

use strict;
use warnings;
use utf8;

sub length {
    '$_[min]文字以上$_[max]文字以下',
}

sub stash_test {
    'これ、テスト用です。';
}

sub ascii {
    '英数字と記号、空白',
}

sub nonsymbol_ascii {
    '英数字のみ',
}

sub alphabet {
    'アルファベット',
}

sub number {
    '半角数字',
}

1;