C函数删除所有大写字符
我需要在 C 中有效实现一个函数,该函数将被赋予 char[] ,并且它将从中删除所有大写字符,返回剩下的所有内容。 例如,如果给出 HELLOmy_MANname_HOWis_AREjohn_YOU__
它应该返回 my_name_is_john__
这不是一个太容易成为的硬件,但它在我的时区是凌晨 2 点,我认为这将是一个问题的解决方案我现在面对我的代码!
欢迎任何帮助! 干杯!=)
I need an efficient implementation of a function in C that would be given a char[] and it will remove all uppercase characters from it returning everything left.
e.g. if given HELLOmy_MANname_HOWis_AREjohn_YOU__
it should return my_name_is_john__
this is not a HW too easy to be one, but its 2am in my timezone and I think this would be a solution to a problem im facing in my code now!
any help is welcome!
cheers!=)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
也许这个?
maybe this?
算法一些伪代码怎么样?How about
an algorithmsome pseudo-code?这个怎么样?
How about this?
就地工作:
Works in-place: