您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“c語言怎么將大寫字母轉成小寫”,內容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“c語言怎么將大寫字母轉成小寫”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
#!/bin/bash
#name: upper_to_lower.sh
#the function is trun uper to lower
#like ABCd to abcd
haveuppernumber()
{
#test if the string have upper number
str="$(echo $1 | tr '[:upper:]' '[:lower:]')"
if [ "$str" != $1 ] ; then #get some problem
echo "[#have upper number,and i well trun them to lower:#]"
return 1 #have upper number
else
return 0 #no upper number
fi
}
if [ $# -ne 1 ] ; then
echo "Usage: $0 <string>" >&2
exit 1
fi
if ! haveuppernumber $1 ; then #when if is 0 it run?
#if [ 0 ] ; then #in shell true return 0 ,false return 1
echo $1 | tr '[:upper:]' '[:lower:]' #it can turn the UPPER number to lower
# echo $1 | tr '[:lower:]' '[:upper:]' #it can turn the lower number to UPPER
else
echo "[#no upper number:#]"
echo $1
fi
exit 0
功能說明:當輸入”./upper_to_lower.sh AaBbCcdd“時會先判斷輸入格式是否正確,然后判斷字符串中是否有大寫字母如果有顯示"[#have upper number,and i well trun them to lower:#]"和轉換成小寫字母后的字符串;如果沒有大寫字母顯示"[#no upper number:#]"和小寫字符串。
然后又試著用c語言實現(xiàn)相同的功能,如下:
代碼如下:
#include<stdio.h>
#include<stdlib.h>
int haveuppernumber(char *p)
{
char*q=p;
for(;*q!='\0';q++)
{
if(*q>='A'&&*q<='Z')
{
printf("[#have upper number and i will turn them to lower #]\n");
return 1;
}
}
printf("[#no upper number#]\n");
return 0;
}
void turntolower(char *p)
{
for(;*p != '\0';p++)
{
if(*p>='A' && *p<='Z')
{
*p+=' ';
}
}
}
int main(int argc , char *argv[])
{
char *p;
p=argv[1];
if(argc != 2)
{
printf("Usage : %s <string>\n",argv[0]);
exit(-1);
}
if(haveuppernumber(p))
{
turntolower(p);
printf("%s\n",argv[1]);
}
else
{
printf("%s\n",argv[1]);
}
return 0;
}
讀到這里,這篇“c語言怎么將大寫字母轉成小寫”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。