| 12345678910111213141516171819 |
- //
- // RegularExpression.h
- // IBOSSIPAD
- //
- // Created by guan hong hou on 15/12/23.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface RegularExpression : NSObject
- -(BOOL)AmountRegular:(NSString*) moneyAmount;
- - (NSString *) decimalwithFormat:(NSString *)format floatV:(float)floatV;
- -(BOOL)DiscountRegular:(NSString*) percentAmount;
- +(BOOL)isAmount:(NSString*)amount;
- +(BOOL)isCurrency:(NSString*)amount;
- +(BOOL)isLegalAmount:(NSString*)amount;
- @end
|