I have a string of characters, like
"CDABOZPVRYXSWQEGNILUTHMKJF"
and want to convert it to a string in which the character at position p is bold.
After doing this I want to leave the result in a table that will be displayed in TableForm and then used for publications or export — e.g., copy as LaTeX — so the result needs to be (essentially) a formatted string with a single bold character.
Is there a way to accomplish this?



mark["CDABOZPVRYXSWQEGNILUTHMKJF", {{Red, ;; ;; 2}}]– Kuba Mar 03 '15 at 21:02Stringoutput however. – Mr.Wizard Mar 03 '15 at 21:06"ABC\!\(\*StyleBox[\"D\",FontWeight->Bold]\)EFG". – Szabolcs Mar 03 '15 at 21:07\textbf{x}. – orome Mar 03 '15 at 22:07Stringit would be a solution. However since Mathematica 10.0.2 seems incapable of copying a styled string as LaTeX this is a much different problem. I suggest that you start with something like "How can I export a styled string to LaTeX?" instead. – Mr.Wizard Mar 03 '15 at 22:41