Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
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-19-2007, 10:40 AM
Member
 
Join Date: Jun 2007
Location: Colombo, Sri Lanka
Posts: 31
hiranya is on a distinguished road
String Manipulation Task
Hi All,

I have a String of the following form.

Code:
"Some Text (Some Integer)"
Some examples:
Code:
"Tom Cruise (125)" "Mel Gibson (10)"
How do I extract only the number part within the brackets? A sample code would be appreciated.

Regards,
Hiranya
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 11-19-2007, 12:07 PM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,395
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
First find the index of '(' and ')' signs, other words first and last occurrence of them within the string.

Code:
String ss = "Tom Cruise (125)"; // First occurrence of '(' int firstIndex = ss.indexOf('('); // gives a value // Last occurrence of ')' int lastIndex = ss.indexOf(')'); // or you can use lastIndexOf()
then find the substring using calculated values

Code:
String subSt = ss.substring((firstIndex + 1), (lastIndex - 1));
Hope it helps to you.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
(Close on July 13, 2008)
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
PLZ...PLZ!!!HELP ME TO WRITE THE TASK 2's CODES hhoa87 Advanced Java 3 03-23-2008 12:50 AM
java : how to hide application icon from a task bar yogeshagashe Advanced Java 0 03-12-2008 02:05 PM
String manipulation example (Title case) Java Tip Java Tips 0 01-29-2008 10:04 AM
Scheduling a task bugger Advanced Java 3 12-04-2007 01:32 PM
Task Blocks 0.5 johnt Java Announcements 0 08-08-2007 09:43 PM


All times are GMT +3. The time now is 07:56 AM.


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