asp里一字符串交替由字母和数字组成,如何把它分割存入数组?

谢谢啦!... 谢谢啦! 展开
 我来答
匿名用户
2011-09-23
展开全部
/*
将一个字符串中的字母,数字字符分离出来,分别放入两个数组之中
*/
#include<stdio.h>

void main()
{
char *p,s[80],zm[80];
int sz[80];
int alpha,space,digit,other;
int i;
alpha=space=digit=other=0;
printf("input string: ");
gets(s);
for(p=s;*p!='\0';p++)
if( (*p>='a'&&*p<='z') || (*p>='A'&&*p<='Z') )
else if(*p==32) space++; //空格的ASCII码为32
else if(*p>='0' &&*p<='9' )
else other++;
printf("alpha:%d space:%d digit:%d other:%d\n",alpha,space,digit,other);
printf("字符数组内容为:");
for(i=0;i<alpha;i++)
{
printf("%c ",zm[i]);
}
printf("\n");
printf("数字数组内容为:");
for(i=0;i<digit;i++)
{
printf("%d ",sz[i]);
}
printf("\n");

}

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
272797853
2011-09-22 · 超过21用户采纳过TA的回答
知道答主
回答量:105
采纳率:0%
帮助的人:59.9万
展开全部
for i=1 to len(trim(str1))
if mid(trim(str1),i,1)<>" " then
数组添加→ mid(trim(str1),i,1)
end if
next
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
flasharrow2001
2011-09-22 · TA获得超过337个赞
知道小有建树答主
回答量:175
采纳率:0%
帮助的人:162万
展开全部
<%
dim s,n1,t1
dim n()
dim t()
n1=0
t1=0
s="dsfdf123213rerr7867"
for i=1 to len(s)
if IsNumeric(mid(s,i,1))=true then
redim Preserve n(n1)
n(n1)=mid(s,i,1)
n1=n1+1
else
redim Preserve t(t1)
t(t1)=mid(s,i,1)
t1=t1+1
end if
next
response.write "数字数组:"
for k=0 to ubound(n)
response.write n(k)
next
response.write "<br/>"
response.write "字符数组:"
for j=0 to ubound(t)
response.write t(j)
next
%>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友65e884d4c
2011-09-22 · 超过11用户采纳过TA的回答
知道答主
回答量:48
采纳率:0%
帮助的人:28.7万
展开全部
使用他里面的substring()方法截取,然后再存
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
4312
2011-09-22 · TA获得超过1002个赞
知道小有建树答主
回答量:2076
采纳率:0%
帮助的人:875万
展开全部
补充楼上

用IsNumeric()函数判断第一个是否为数字
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式