4
I have repeating Strings, just changing a word. I have one case
to assemble email content, but do not want to keep repeating the whole string, being that the only value that will be different, is whether it is front-end, back-end, mobile, etc.
How do I do it the best way? To get a cleaner code?
String mailContent = "";
switch (mail) {
case "FRONTEND":
mailContent = "Assim que tivermos oportunidade para programador front-end, entraremos em contato.";
break;
case "BACKEND":
mailContent = "Assim que tivermos oportunidade para programador back-end, entraremos em contato.";
break;
case "MOBILE":
mailContent = "Assim que tivermos oportunidade para programador mobile, entraremos em contato.";
break;
case "GENERIC":
mailContent = "Assim que tivermos oportunidade para programador, entraremos em contato.";
break;
default:
break;
}
It’s not enough to make a
if
and atoLowerCase()
?– Isac