Home Answers Viewqa Java-Beginners execption handling

 
 


Dame Leta
execption handling
1 Answer(s)      a year and 2 months ago
Posted in : Java Beginners

I have the following form(as example).

Name:_____ Id number:____

I want to handle that as if one enter numbers in place of name,my program says please enter only character place of the name.

How I should do????????

Dame Leta

From Ethiopia,Jimma University, Department of Computer Science.

View Answers

March 20, 2012 at 5:42 PM


import java.util.*;
import java.util.regex.*;

class RegularExpressions {

        public static boolean validateName(String name) {
                return name.matches("\\p{Upper}(\\p{Lower}+\\s?)");
        }

        public static boolean isNumeric(String str){
         return str.matches("-?\\d+(.\\d+)?");
}


        public static void main(String[] args) {
                Scanner input = new Scanner(System.in);
                System.out.print("Enter Name: ");
                String name = input.nextLine();
                while (validateName(name) != true) {
                        System.out.print("Invalid Name(Name and Surname shoulb be started with capitals with space between name and surname)!");
                        System.out.println();
                        System.out.print("Re-Enter Name: ");
                        name = input.nextLine();
                }
                System.out.print("Enter ID: ");
                String  id = input.next();
                while(isNumeric(id) != true) {
                        System.out.print("Invalid ID!");
                        System.out.println();
                        System.out.print("Re-Enter ID: ");
                        id = input.next();
                }

        }
}









Related Pages:
execption handling
execption handling  I have the following form(as example). Name:_____ Id number:____ I want to handle that as if one enter numbers in place of name,my program says please enter only character place of the name. How I should do
exception handling
exception handling  explain about exception handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
event handling
event handling  diff btwn event handling in ASP.net and in HTML
exception handling
exception handling  could you please tell me detail the concept of exception handling
exception handling
exception handling   Give the exception hierarchy of Java.   Please visit the following links: http://www.roseindia.net/java/java-exception/exception-java.shtml http://www.roseindia.net/java/exceptions/exception
exception handling
exception handling  What is an exception and what are the advantages of exception handling mechanism.   Java Exception Exception... the working code and the error-handling code can be disintegrated. It also gives us
error handling mechanism
error handling mechanism  What is Java error handling mechanism
handling Button Event in iphone
handling Button Event in iphone  handling Button Event in iphone
Exception Handling in Struts.
Exception Handling in Struts.  How you can do Exception Handling in Struts
Event handling on an image
Event handling on an image  I want to divide an image into frames and want to do event handling on the frames
exception handling in php - PHP
exception handling in php  i need few examples on exception handling in php
exception handling mechanism
exception handling mechanism  Explain Java's exception handling mechanism in detail.   Please visit the following links: http.../exceptions/catching-and-handling-exceptions.shtml
Java exception handling
Java exception handling  what are the constraints imposed by overriding on exception handling
unicode handling in java
unicode handling in java  reading a unicode text file in java
jquery session handling
jquery session handling  What is session handling in JQuery
Java event handling
Java event handling  Which java.util classes and interfaces support event handling
php error handling function
php error handling function  Is there any library or function that can be used to handle errors in PHP
File handling in Java
File handling in Java  Hi, Can any one tell me the basics of File handling in Java? Thanks   Hi, File handling is very important... handling features in their api. You can read more at File Handling in Java
FILE HANDLING CONCEPT
FILE HANDLING CONCEPT  Write a program to read and write the details of an employee like year of joining, Department code, salary using some byte stream classes
Try and catch in Exception Handling.
Try and catch in Exception Handling.  How can we use try and catch block in exception handling?   Here is an example of Exception handling.... Then to perform exception handling, we have used try and catch block where we have
Exception Handling in java
Exception Handling in java  what is advantage to catch smaller exception first and then normal exception. I mean we normally catch SQLException first and then Exception.   Hi, The exceptions should be from
FILE HANDLING CONCEPT
FILE HANDLING CONCEPT  Prompt the user to enter the name of a text file to search for. If the name does not end in a .txt extension, display an error message. Search for this file in the current directory. If the file does
FILE HANDLING CONCEPT
FILE HANDLING CONCEPT   Write a program that reads input from the console in the form of a string. When the user enters a word called end, the program should stop reading from the console and print out the values that have been
FILE HANDLING CONCEPT
FILE HANDLING CONCEPT   Write a program that reads input from the console in the form of a string. When the user enters a word called end, the program should stop reading from the console and print out the values that have been
javascript event handling examples
javascript event handling examples  javascript event handling examples   var handleClick = function(e) { // Older IEs set the `event` globally. e = window.event || e; // Older IEs use `srcElement` instead
Form Handling in Spring Framework
Form Handling in Spring Framework  I have created spring project.I created the form. When I entered the values to the form, the values should... empty. Can you send me some code for handling form in spring framework.  
Handling multiple buttons in HTML Form
Handling multiple buttons in HTML Form  How to handle Handling multiple buttons in HTML Form

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.