c++ 计算自动大小写字符串?
是否可以做类似 cout << 的事情 “我的绳子”; 我的字符串大写了吗? 据我所知没有办法做到这一点吗? 我需要将它包装在一个函数中
Is it possible to do something like cout << "my string"; and have my string capitalized? from what i can tell there is no way to do it? i need to wrap it around a function
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以扩展 std:streambuf
请参阅此示例: http://www.java2s.com/Tutorial/ Cpp/0240__File-Stream/Extendsstdstreambuftocreateoutputbuffer.htm
Yes, you can extend std:streambuf
See this example: http://www.java2s.com/Tutorial/Cpp/0240__File-Stream/Extendsstdstreambuftocreateoutputbuffer.htm
使用 Boost string_algo 库:
Use the Boost string_algo library: