I have about 50 different tags, each is at most 2 chars in lengnth. depending on the input of the user a combination of tags will be joined together into one large string. Is there a simpler/more efficient way then having 50 different if-statements? for that matter, how is a switch/case statement different than a series of if statements and, would a hash table be appropriate here?
note -- I have already started creating a bunch of
string tag = "xx";
for each different tag..