我正在通过 telnet 处理字典服务器,我希望它以这种格式返回:
**word** (wordType): wordDef wordDef wordDef wordDef
wordDef wordDef wordDef.
现在我正在使用以下方式输出代码:
write( my_socket, ("%s", word.data() ), word.length() ); // Bold this
write( my_socket, ("%s", theRest.data() ), theRest.length() );
所以我希望第一行加粗。
编辑
对不起,我忘了说这是一个命令行。