零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> Object-C 基础
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> Object-C 线程
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> OpenGL ES
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> GPUImage
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> AVFoundation
零基础 Object-C 学习路线推荐 : Object-C 学习目录 >> CocoaPods
一.NSString 查找指定字符串出现的次数
/******************************************************************************************/
//@Author:猿说编程
//@Blog(个人博客地址): www.codersrc.com
//@File:iOS NSString 查找指定字符串出现的次数
//@Time:2021/09/04 08:00
//@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
/******************************************************************************************/
- (NSInteger)countCurencesOfString:(NSString*)searchString //需要查找的字符串
fromString:(NSString*)strString //原始字符串
{
NSInteger strCount = [strString length] - [[strString stringByReplacingOccurrencesOfString:searchString withString:@""] length];
return strCount / [searchString length];
}
//使用
NSString* strString = @"www.codersrc.comcomwww.coderssrc,123,456,456,789";
NSLog(@"%@ 出现次数:%d",@"123",[self countCurencesOfString:@"123" fromString:strString]);
NSLog(@"%@ 出现次数:%d",@"www",[self countCurencesOfString:@"www" fromString:strString]);
NSLog(@"%@ 出现次数:%d",@"code",[self countCurencesOfString:@"code" fromString:strString]);
NSLog(@"%@ 出现次数:%d",@"code",[self countCurencesOfString:@"w" fromString:strString]);
/*
输出:
123 出现次数:1
www 出现次数:2
code 出现次数:2
w 出现次数:6
*/
二.猜你喜欢
- Xcode – The application’s Info.plist does not contain CFBundleShortVersionString.
- Xcode – This app has attempted to access privacy-sensitive data without a usage description.
- Xcode – Embedded binary’s bundle identifier is not prefixed with the parent app’s bundle identifier
- Xcode – Your maximum App ID limit has been reached. You may create up to 10 App IDs every 7 days
- Xcode replace 使用正则表达式替换文字
- Object-C 获取系统字体和字体名字
- Object-C 加载 TTF/OTF/TTC 文件
- Object-C private var mobileDevice文件夹
- Object-C 保存文件到相册
- NSString 字符串的排序
- iOS UIImage 与 RGBA 相互转换
- iOS NSString 查找指定字符串出现的次数
- iOS NSString 查找指定字符串位置
ChatGPT 3.5 国内中文镜像站免费使用啦
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容