123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /********************************************************************************************************
- * @file NSString+extension.m
- *
- * @brief for TLSR chips
- *
- * @author telink
- * @date Sep. 30, 2010
- *
- * @par Copyright (c) 2010, Telink Semiconductor (Shanghai) Co., Ltd.
- * All rights reserved.
- *
- * The information contained herein is confidential and proprietary property of Telink
- * Semiconductor (Shanghai) Co., Ltd. and is available under the terms
- * of Commercial License Agreement between Telink Semiconductor (Shanghai)
- * Co., Ltd. and the licensee in separate contract or the terms described here-in.
- * This heading MUST NOT be removed from this file.
- *
- * Licensees are granted free, non-transferable use of the information in this
- * file under Mutual Non-Disclosure Agreement. NO WARRENTY of ANY KIND is provided.
- *
- *******************************************************************************************************/
- //
- // NSString+extension.m
- // SigMeshOCDemo
- //
- // Created by 梁家誌 on 2018/8/2.
- // Copyright © 2018年 Telink. All rights reserved.
- //
- #import "NSString+extension.h"
- @implementation NSString (extension)
- /*
- *去掉首尾空格
- */
- - (NSString *)removeHeadAndTailSpace{
- return [self stringByTrimmingCharactersInSet:NSCharacterSet.whitespaceCharacterSet];
- }
- /*
- *去掉首尾空格 包括后面的换行 \n
- */
- - (NSString *)removeHeadAndTailSpacePro{
- return [self stringByTrimmingCharactersInSet:NSCharacterSet.whitespaceAndNewlineCharacterSet];
- }
- /*
- *去掉所有空格
- */
- - (NSString *)removeAllSapce{
- return [self stringByReplacingOccurrencesOfString:@" " withString:@""];
- }
- /*
- *去掉所有空格和最后的回车
- */
- - (NSString *)removeAllSapceAndNewlines{
- NSString *tem = [self stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
- return [tem stringByReplacingOccurrencesOfString:@" " withString:@""];
- }
- /// 去掉所有空格和最后的回车,并在字符串前面补充“0”使其满足长度length
- /// @param length 需要返回的字符串的长度,大于该长度直接返回,不在补“0”
- - (NSString *)formatToLength:(UInt8)length {
- NSString *tem = [self stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
- tem = [tem stringByReplacingOccurrencesOfString:@" " withString:@""];
- while (tem.length < length) {
- tem = [@"0" stringByAppendingString:tem];
- }
- return tem;
- }
- /*
- *循环在间隔n个字符添加m个空格
- */
- - (NSString *)insertSpaceNum:(int)spaceNum charNum:(int)charNum{
- if (charNum <= 0) {
- return @"";
- }
- NSString *returnString = @"";
- for (int i=0; i<self.length; i++) {
- returnString = [returnString stringByAppendingString:[self substringWithRange:NSMakeRange(i, 1)]];
- if ((i + 1) % charNum == 0) {
- for (int j=0; j<spaceNum; j++) {
- returnString = [returnString stringByAppendingString:@" "];
- }
- }
- }
- return returnString;
- }
- ///JSON字符串转化为字典
- + (NSDictionary *)dictionaryWithJsonString:(NSString *)jsonString
- {
- if (jsonString == nil) {
- return nil;
- }
-
- NSData *jsonData = [jsonString dataUsingEncoding:NSUTF8StringEncoding];
- NSError *err;
- NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:jsonData
- options:NSJSONReadingMutableContainers
- error:&err];
- if(err)
- {
- DDLog(@"json解析失败:%@",err);
- return nil;
- }
- return dic;
- }
- @end
|