You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
458 B
23 lines
458 B
// |
|
// NSString+SelectString.h |
|
// Lookfit |
|
// |
|
// Created by ecell on 2022/11/1. |
|
// Copyright © 2022 Sheldon. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface NSString (SelectString) |
|
|
|
- (NSString *)selcteStringWithSelectSatrt:(NSString *)startStr selecteEnd:(NSString *)endStr; |
|
|
|
+ (NSString *)replaceUnicode:(NSString *)unicodeStr; |
|
|
|
+(NSString *)utf8ToUnicode:(NSString *)string; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|