首先使用strchr()
函数从左括号'('中提取字符。
char *name="The Matrix(1999)"; char *ps; ps=strchr(name,'(');
然后将方括号()中的每个字符添加到char数组
char y[5]=""; int p; for (p=1;p<strlen(ps+1);p++) { y[p-1]=ps[p]; } y[4]='\0';
最后使用atoi()
函数将结果字符串转换为整数
year=atoi(y); printf("year=%d",year);
现在,您可以应用所需的过滤器,以创建2008年之前所有电影的字符串数组