//
// main.m
// 考核题
//
// Created by 中嘉博众集团 on 15/11/16.
// Copyright (c) 2015年 com.sisp. All rights reserved.
//
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
/*
第1题 字符串中的world替换为i bookan wisdom
*/
NSString *[email protected]"hello world and sunshine";
/*
第2题 字符串的相加,以字符串输出,并输出长度
*/
NSString *[email protected]"999";
NSString *[email protected]"888";
/*
第3题 比较字符串大小
*/
NSString *[email protected]"ABC";
NSString *[email protected]"ABc";
/*
第4题 截取Android并输出
*/
NSString *[email protected]"iphoneAndroid";
/*
第5题 用c语言创建一个oc字符串,并输出。使用两种方法。
*/
char *s="zhangsanfeng";
printf("%s",s);
/*
第6题 字符串内所有a都替换成A;
*/
NSString *[email protected]"whatareyou";
/*
第7题 判断字符串是否以http开头
*/
NSString *[email protected]"http://www.sina.com.cn";
/*
第8题 将字符串内admin和123截取出来
*/
NSString *[email protected]"http://localhost:8099/test/user=admin&pwd=123";
/*
第9题 字符添加telephone:iphone iphone5修改为"telephone:iphone iphone4 iphone5 iphone6";
*/
NSString *[email protected]"telephone:iphone iphone5";
/*
第10题 排序
*/
NSArray *[email protected][@"String 11",@"String 21",@"String 1",@"string 2",@"String 02"];
}
return 0;
}