Meet the team behind ShepHertz Platform
Making a difference in the world together
People whose belief drives us forward
Enterprises & Developers from across the world
Access the ShepHertz Newsroom
800+ APIs. 25+ Modules. 16 SDKs.Real-time Actionable Analytics. 1 Platform.
Acquire. Engage. Retain. Convert.
Comprehensive Solution to Securely Expose Protected Resources as APIs
Real Time & Turn Based MultiplayerGaming Platform With Game Mechanics.
Develop > Deploy > launch > Scale > Monitor
Continuous Integration & Delivery
Customers Want A 360 °Omni-Channel Retail Experience.
Seamless & ConnectedOmni-Channel Experience Delivered.
Plethora of Games are LaunchedEvery Day. Don't Let Yours Die.
Leverage User Data to DeliverPersonalized Content Across Channels
Inspire Wanderlust in theCustomers with Omni-Channel Experience
800+ APIs. 25+ Modules. 16 SDKs. Real-time Actionable Analytics. 1 Platform.
Real Time & Turn Based Multiplayer Gaming Platform With Game Mechanics.
Forum
Hello,
Please find a below code snippet and add this method in your app and call this method before making a call to App42 Server:
public boolean isValidEmail(String checkString) { Pattern p = Pattern.compile("^[\\w\\]([\\.\\w])+[\\w]+@([\\w\\]+\\.)+[A-Z]{2,4}$", Pattern.CASE_INSENSITIVE); Matcher m = p.matcher(checkString); boolean b = m.matches(); if (b != true) return false; return true; }
public boolean isValidEmail(String checkString) {
Pattern p = Pattern.compile("^[\\w\\]([\\.\\w])+[\\w]+@([\\w\\]+\\.)+[A-Z]{2,4}$", Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(checkString);
boolean b = m.matches(); if (b != true)
return false;
return true;
}
Let us know if it helps.
Himanshu Sharma
These validations are checked at client side and does not have any error codes. These validations include null, blank or invalid value of parameters. You can simply catch these App42Exception and can check for error message to handle it. Let me know if it helps. Thanks AJay