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.

24 lines
460 B

2 years ago
//
// NSString+SelectString.h
// FireBoltt
2 years ago
//
// 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