美文网首页
字符串大小写转换

字符串大小写转换

作者: 863cda997e42 | 来源:发表于2018-01-25 15:42 被阅读20次
#include<iostream>
#include<string>

using namespace std;

void upper_string(const char* input, char* out)
{
    unsigned int len = strlen(input);
    for (unsigned int i=0; i<len; i++)
    {
        out[i]=(char)toupper(input[i]);
    }
    out[len]='\0';
}

void lower_string(const char* input, char* out)
{
    unsigned int len = strlen(input);
    for (unsigned int i=0; i<len; i++)
    {
        out[i]=(char)tolower(input[i]);
    }
    out[len]='\0';
}

int main()
{
    char* astring = "Hello World";
    char result[20];
    lower_string(astring,result);
    cout<<result<<endl;
    upper_string(astring,result);
    cout<<result<<endl;
    return 0;
}

相关文章

  • 2018-11-20

    打卡时间:15:00 String类型 5、字符串大小写转换方法ECMAScript中设计字符串大小写转换的方法有...

  • 字符串相关

    1.字符串的创建 2.字符串的类型转换 3.字符串大小写转换

  • 2018-06-16

    ##字符串的API **转换大小写** ```js 把字符串转换成大写 toUpperCase() 把字符串转...

  • linux shell编程中有的命令组合

    1、字符串转换大小写 gawk '{print toupper($0)}' //转换为大写 gawk '{prin...

  • iOS字符串操作

    字符串的转换操作 程序开发中,有时需要对字符串中字符大小写进行转换,为此,NSString提供了字符串转换操作的方...

  • Python 字符串常用内置方法介绍

    Python版本:3.7.0 一. 大小写转换 ① capitalize() capitalize() #字符串首...

  • NSString

    NSString对象用于存储文本字符串 比较字符串的大小 比较字符串 取得字符串长度 大小写转换 转换为基本数据类...

  • 字符和字符串

    字符: 字符串: 计算字符串长度: 字符串拼接 格式化字符串 字符串比较: 判断前后缀 大小写转换 转换为基本数据类型

  • 标准C的一些操作(二)

    1、字符串大小写转换 //字符串全部转为大写 char *strupr(char *str) { char *o...

  • go简要 - string字符串函数

    常用字符串操作函数 类型转换 比较对比 搜索 查找 统计 替换 删除过滤 大小写转换 前缀后缀 字符串分割 拼接 ...

网友评论

      本文标题:字符串大小写转换

      本文链接:https://www.haomeiwen.com/subject/nbvvaxtx.html