You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
2.9 KiB
123 lines
2.9 KiB
import 'dart:math';
|
|
|
|
class RandomCharacter {
|
|
static String getChinese({int length = 2}) {
|
|
int max = 0x9FEF - 0x4e00 + 1;
|
|
int base = 0x4e00;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getYijing({int length = 2}) {
|
|
int max = 0x4DE0 - 0x4DC0 + 1;
|
|
int base = 0x4DC0;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getHiragana({int length = 2}) {
|
|
int max = 0x3080 - 0x3040 + 1;
|
|
int base = 0x3040;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getkatakana({int length = 2}) {
|
|
int max = 0x30E0 - 0x30A0 + 1;
|
|
int base = 0x30A0;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getJPCharacter({int length = 2}) {
|
|
int max = 0x30E0 - 0x3040 + 1;
|
|
int base = 0x3040;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getEmoji({int length = 2}) {
|
|
int max = 0x1F64F - 0x1F601 + 1;
|
|
int base = 0x1F601;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getNum({int length = 2}) {
|
|
int max = 0x003A - 0x0030 + 1;
|
|
int base = 0x0030;
|
|
int r;
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
r = base + Random().nextInt(max);
|
|
rc = rc + String.fromCharCode(r);
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getENCharacter({int length = 2}) {
|
|
String _alphabet = 'qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM';
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
rc = rc + _alphabet[Random().nextInt(_alphabet.length)];
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getLowerCase({int length = 2}) {
|
|
String _alphabet = 'qwertyuiopasdfghjklzxcvbnm';
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
rc = rc + _alphabet[Random().nextInt(_alphabet.length)];
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getUpperCase({int length = 2}) {
|
|
String _alphabet = 'QWERTYUIOPASDFGHJKLZXCVBNM';
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
rc = rc + _alphabet[Random().nextInt(_alphabet.length)];
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static String getCustom(String string, {int length = 2}) {
|
|
String rc = '';
|
|
for (var i = 0; i < length; i++) {
|
|
rc = rc + string[Random().nextInt(string.length)];
|
|
}
|
|
return rc;
|
|
}
|
|
}
|