In strings.xml
Lets say I have the following strings:
<string name="CourseInfo">Course Information</string>
<string name="CourseInfo1">Course Information:</string>
<string name="CourseInfo2">Course Information:-</string>
As you can see the string is the same, the only difference is that the second one has a colon and the third one has a colon and a dash.
Is this the most optimal way to do this? It seems kinda repetitive to do it this way.
getResources.getString(...) + ":-" ;or+ ":";?