10/05/19 01:50:28 9yUyKYhb0
>>108
Script:JScript
str = '';
for (i = 0; i < 10; i++) {
str += String.fromCharCode(Math.floor(Math.random() * 26) + 97);
}
WScript.Exec('Numbering:%s' + str + '%s');
こんな感じ?
まぁ実際使うには複数選んでる時にバラバラな文字列つける様に
作るんだろうけど可能かと聞かれれば可能。