1234567891011121314151617181920 |
- //
- // NSString+hanzi.h
- // SmartLightForBigFish
- //
- // Created by coderYK on 2017/8/29.
- // Copyright © 2017年 RD. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NSString (hanzi)
- - (NSString *)rds_getChineseString;
- // 得到中英文混合字符串长度 英文1 中文2
- - (NSInteger)rds_countStringByteLength;
- - (NSString *)subBytesOfstringToIndex:(NSInteger)index;
- @end
|