Files
yinmeng-ios/xplan-ios/Base/Tool/NSString/NSString+Regex.h

20 lines
253 B
C
Raw Normal View History

2021-09-14 21:01:09 +08:00
//
// NSString+Regex.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/14.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NSString (Regex)
///是否是正确的手机号
- (BOOL)isPhoneNumber;
@end
NS_ASSUME_NONNULL_END