下、上、数字、および句読点を含む可変サイズの長さのランダムな文字列を生成しました。
これらの文字のいずれかの入力を受け取り(*, ', ?, :, /,\)
、指定された文字の有無にかかわらずランダムな文字列を生成する API を作成しています
例:
randomStringWithSpecialChar(boolean specChar, String... specialChars){
String randomString = "GHHG#^%^57687987*'?:/\fgdg"
if(!specChar){
# I should replace (*, ', ?, :, /,\) with x, so that I can pass it as my testdata
String finalString = "GHHG#^%^57687987xxxxxxfgdg"
}
return finalString
}