重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
//函数,输入字符串,返回字符串前三字母。
目前创新互联建站已为上千的企业提供了网站建设、域名、网页空间、网站托管、企业网站设计、博罗网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
public function getStoreName($str){
$one = mb_substr($str, 0, 1, 'utf-8');
$two = mb_substr($str, 1, 2, 'utf-8');
$three = mb_substr($str, 2, 3, 'utf-8');
if(preg_match('/^[\x7f-\xff]+$/', $one)){
$one = getFirstCharter($one);
}
if(preg_match('/^[\x7f-\xff]+$/', $two)){
$two = getFirstCharter($two);
}
if(preg_match('/^[\x7f-\xff]+$/', $three)){
$three = getFirstCharter($three);
}
return $one.$two.$three;
}
扩展资料:
写一个函数,将一个字符串中的元音字母复制到另一字符串,然后输出。
代码块:
方法1:
#include stdio.h
#include string.h
char ycopy(char x[], char y[]); //定义复制函数。
main()
{
char a[20], b[20];
gets(a); //输入字符串。
b[20]=ycopy(a, b); //调用复制函数。
puts(b); //输出复制后的字符串。
return 0;
}
//元音复制函数。
char ycopy(char x[], char y[])
{
int m, i, j;
m=strlen(x);
for (i=0, j=0; im; i++){
if (x[i]=='a'||x[i]=='A')
y[j++]=x[i];
else if (x[i]=='e'||x[i]=='E')
y[j++]=x[i];
else if (x[i]=='i'||x[i]=='I')
y[j++]=x[i];
else if (x[i]=='o'||x[i]=='O')
y[j++]=x[i];
else if (x[i]=='u'||x[i]=='U')
y[j++]=x[i];
}
y[j] = '\0';
return y[j];
}
方法2:
#include stdio.h
#include string.h
void input(char st[]); //定义输入函数。
void output(char st[]); //定义输出函数。
void letter(char x[], char y[]); //定义元音复制函数。
int main()
{
char s1[20], s2[10];
input(s1); //调用输入函数。
letter(s1, s2); //调用元音复制函数。
output(s2); //调用输出函数。
return 0;
}
//输入函数。
void input(char st[])
{
printf("Please enter string: ");
gets(st);
}
//元音复制函数。
void letter(char x[], char y[])
{
int n=strlen(x);
for (int i=0, j=0; in;
(x[i]=='a'||x[i]=='e'||x[i]=='i'||x[i]=='o'||x[i]=='u'||x[i]=='A'||x[i]=='E'||x[i]=='I'||x[i]=='O'||x[i]=='U') ? y[j++]=x[i++] : i++);
y[j]='\0';
}
//输出函数。
void output(char st[])
{
printf("The final string: %s\n", st);
}
#includelt;stdio.hgt;
#includelt;string.hgt;
#define MAXS 10
void Shift(char s[]);
void GetString(char s[]);/*实现细节在此不表*/
int main()
{
char s[MAXS];
GetString(s);
Shift(s);
printf("%s\n",s);
return 0;
}
/*你的代码将被嵌在这里*/
代码:
void Shift(char s[])
{
int len=strlen(s);
if(len==3);
else
{
int i;
char str[100];
int t=0;
for(i=0;ilt;3;i++)
{
strlt;igt;=slt;igt;;
}
for(i=3;ilt;len;i++)
{
s[t++]=slt;igt;;
}
for(i=0;ilt;3;i++)
{
s[t++]=strlt;igt;;
}
}
}
扩展资料:
include用法:
#include命令预处理命令的一种,预处理命令可以将别的源代码内容插入到所指定的位置;可以标识出只有在特定条件下才会被编译的某一段程序代码;可以定义类似标识符功能的宏,在编译时,预处理器会用别的文本取代该宏。
插入头文件的内容
#include命令告诉预处理器将指定头文件的内容插入到预处理器命令的相应位置。有两种方式可以指定插入头文件:
1、#includelt;文件名gt;
2、#include"文件名"
如果需要包含标准库头文件或者实现版本所提供的头文件,应该使用第一种格式。如下例所示:
#includelt;math.hgt;//一些数学函数的原型,以及相关的类型和宏
如果需要包含针对程序所开发的源文件,则应该使用第二种格式。
采用#include命令所插入的文件,通常文件扩展名是.h,文件包括函数原型、宏定义和类型定义。只要使用#include命令,这些定义就可被任何源文件使用。如下例所示:
#include"myproject.h"//用在当前项目中的函数原型、类型定义和宏
你可以在#include命令中使用宏。如果使用宏,该宏的取代结果必须确保生成正确的#include命令。例1展示了这样的#include命令。
【例1】在#include命令中的宏
#ifdef _DEBUG_
#define MY_HEADER"myProject_dbg.h"
#else
#define MY_HEADER"myProject.h"
#endif
#include MY_HEADER
当上述程序代码进入预处理时,如果_DEBUG_宏已被定义,那么预处理器会插入myProject_dbg.h的内容;如果还没定义,则插入myProject.h的内容。
如图,源代码在网页端发
你的思路不好,我改写了。
#include stdio.h
#include string.h
#define MAXS 100
void Shift( char s[] );
void GetString( char s[] ); /* 实现细节在此不表 */
int main()
{
char s[MAXS];
GetString(s);
Shift(s); //交换
printf("%s\n", s);
return 0;
}
void GetString( char s[] ){//不写这个无法验证
scanf("%s",s);
}
void Shift( char s[] ){
char a[3];
int i,j;
for(i=0; i3 ;i++){
a[i]=s[i]; //将前3个字母存到a
}
//此时i已经=3
for(; s[i]!='\0' ;i++){
s[i-3]=s[i];
} //i从3开始 直到遇到结束符'\0',往前3格赋值
i-=3; //最后i要退回3格
for(j=0; j3 ;j++){
s[i++]=a[j];
} //将最后3个字母赋值为之前存到a的
}
#include
stdio.h
#include
string.h
#define
N
81
void
readwriteDAT();
void
chg(char
*s)
{
int
i,t,j=0,n=strlen(s);/*i循环控制变量,j用于数组中移动元素的位置*/
for
(i=0;i1;i++)/*因为要把最后一个移到最后,所以只需i1即可*/
{
t=s[0];/*把数组中第一个元素先保存给临时变量t*/
for
(j=0;jn-1;j++)/*下面循环的功能是将除第一个元素外的(即s[0])字符串中的字符循环左移一个位置*/
s[j]=s[j+1];
s[j]=t;/*最后将第一个字符,给最后一个字符*/
}
}
main()
{
char
a[
N
]
;
printf("Enter
a
string
:
");
gets(a);
printf("The
original
string
is
:
");
puts(a);
chg(a);
printf("The
string
after
modified
:
");
puts(a);
}
注意:本程序如不是在二级C模拟系统下写代码,在验证时请以上面代码为准!
将s串中所有字符前移一个位置,第一个字符移到最后:
intlen=strlen(s);
charc=s[len-1];
s[len-1]=s[0];
s[0]=c;
扩展资料
字符串中字母顺序前移,其他字符顺序后移。
#includestdio.h
#includestdlib.h
#includestring.h
char*fun(char*s)
{
inti,j,k,n;
char*p,*t;
n=strlen(s)+1;
t=(char*)malloc(n*sizeof(char));
p=(char*)malloc(n*sizeof(char));
j=0;
k=0;
for(i=0;in;i++)
{
if(((s[i]='A')(s[i]='Z'))||((s[i]='a')(s[i]='z')))
{
t[j]=s[i];
j++;
}
else
{
p[k]=s[i];
k++;
}
}
for(i=0;ik;i++)
t[j+i]=p[i];
t[j+k]=0;
returnt;
}
intmain()
{
chars[80];
printf("Pleaseinput:");
gets(s);
printf("\nTheresultis:%s\n",s);
printf("\nTheresultis:%s\n",fun(s));
getchar();
getchar();
return0;
}
void shift(char *str)
{
int len = strlen(str);
if (len = 3) {
return;
}
for (int j = 0; j 3; ++j) {
char tmp = str[0];
for (int i = 0; i len - 1; ++i) {
str[i] = str[i + 1];
}
str[len - 1] = tmp;
}
}
请采纳,谢谢