Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-15-2007, 08:01 PM
Senior Member
 
Join Date: Nov 2007
Posts: 115
ravian is on a distinguished road
special characters
I am writing a parser. I have a character and want to know what it is (number, letter, special character etc).

Code:
char ch = 'a'; if (Character.isLetter(ch)) { ... } if (Character.isDigit(ch)) { // false ... } if (Character.isLowerCase(ch)) { // true ... } if (Character.isUpperCase(ch)) { // false ... }
Special characters are %, &, /, (, ), = etc. Is there any method in Character class that I can use

Thanks in advance.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 11-15-2007, 08:36 PM
ShoeNinja's Avatar
Senior Member
 
Join Date: Oct 2007
Posts: 123
ShoeNinja is on a distinguished road
Send a message via AIM to ShoeNinja
Not to my knowledge. You could create an Array, List or String containing the hex values of all the special characters that you want. Then just check to see if your characters is in the dataset.

I would personally just do it with a String and use the indexOf method. That's just me though.
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 11-16-2007, 03:28 PM
Senior Member
 
Join Date: Nov 2007
Posts: 111
bugger is on a distinguished road
hmm ...
cant we use ASCII character codes in such scenarios?
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
characters + strings Gilgamesh New To Java 3 03-02-2008 11:10 PM
Convert some special characters stored in a MySql romina Database 1 08-07-2007 07:32 AM
show special symbol using its Unicode character christina AWT / Swing 1 07-25-2007 11:21 AM
Special characters in text fields Felissa Web Frameworks 0 06-27-2007 06:47 PM
Getting all characters in a String Alayna New To Java 2 05-20-2007 01:49 PM


All times are GMT +3. The time now is 11:03 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org