473,574 Members | 2,875 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Splitting strings

13,262 MVP
Breaking up a string

Instead of using the old StringTokenizer class, a simple trick is to use the String.split method.

Expand|Select|Wrap|Line Numbers
  1.  String string = "This is a string"; 
  2.  
  3. String[] tokens = string.split(" ");
  4. for(String s: tokens) {
  5.     System.out.println(s);
  6. }
  7.  
prints

This
is
a
string

The split method returns an array of tokens and takes a string that represents regular expression as argument. In the above example I gave " " (space) as the argument so the string was split on space.

Note
  • If the expression does not match any part of the input then the resulting array has just one element, namely this string.
  • to split on special characters you need to escape them using the \ character e.g
    Expand|Select|Wrap|Line Numbers
    1. String name = "java.sql.Date";
    2. String[] s = name.split("\\.");
    3. System.out.println(Arrays.toString(s));
  • There are actually two split methods in the String class. The second one takes a regular expression and an integer representing the limit e.g
    Expand|Select|Wrap|Line Numbers
    1. String name = "java.sql.Date";
    2. String[] s = name.split("\\.", 1);
    3. System.out.println(Arrays.toString(s));
    returns the array with only one element
Mar 19 '07 #1
4 21668
olakara
18 New Member
hi,
Its also important to note that split method will work only from JDK1.5. Those who work with JDK 1.4 (In industry many product,project s still use it) will not be able to make use of it.
Regards,
-- Abdel Olakara


Breaking up a string

Instead of using the old StringTokenizer class, a simple trick is to use the String.split method.

Expand|Select|Wrap|Line Numbers
  1.  String string = "This is a string"; 
  2.  
  3. String[] tokens = string.split(" ");
  4. for(String s: tokens) {
  5.     System.out.println(s);
  6. }
  7.  
prints

This
is
a
string

The split method returns an array of tokens and takes a string that represents regular expression as argument. In the above example I gave " " (space) as the argument so the string was split on space.

Note
  • If the expression does not match any part of the input then the resulting array has just one element, namely this string.
  • to split on special characters you need to use the \ character e.g
    Expand|Select|Wrap|Line Numbers
    1. String name = "java.sql.Date";
    2.  
    3. String[] s = name.split("\\.");
    4.  
    5. System.out.println(Arrays.toString(s));
  • There are actually two split methods in the String class. The second one takes a regular expression an integer representing the limit e.g
    Expand|Select|Wrap|Line Numbers
    1. String name = "java.sql.Date";
    2.  
    3. String[] s = name.split("\\.", 1);
    4.  
    5. System.out.println(Arrays.toString(s));
    returns the array with only one element
Mar 26 '07 #2
r035198x
13,262 MVP
hi,
Its also important to note that split method will work only from JDK1.5. Those who work with JDK 1.4 (In industry many product,project s still use it) will not be able to make use of it.
Regards,
-- Abdel Olakara
Not really. 1.4 supports the String.split method. You can see the API for 1.4 here.
Mar 26 '07 #3
giffy
9 New Member
HOW to get the spaces out of a delimited string ??

here is a usage scenario where split() seems not to work

Expand|Select|Wrap|Line Numbers
  1.  String origAVNListStr = "~`L~`L~`L~`~`~`L~`";
  2.         String[] strArr = origAVNListStr.split("~`");
  3.  
  4.          for(int i=0;i<strArr.length;i++)
  5.          {
  6.     System.out.println(i+1 +"the next token - " + strArr[i]);
  7.          }
and the output is

Expand|Select|Wrap|Line Numbers
  1. 1the next token -
  2. 2the next token - L
  3. 3the next token - L
  4. 4the next token - L
  5. 5the next token -
  6. 6the next token -
  7. 7the next token - L
So as we can see - that the last space that shall be displayed as

"8the next token" is not displayed.

As far as this space reading from the string in an Array is concerned StringTokenizer fails even miserably. It will not take any of the spaces(either at the start/end or in between)

Is there any way out of it. Sincere thanks in advance.
Aug 27 '08 #4
r035198x
13,262 MVP
It's not really a failure but is the behavior clearly documented in the specs for that method.

This method works as if by invoking the two-argument split method with the given expression and a limit argument of zero. Trailing empty strings are therefore not included in the resulting array.
Oct 24 '08 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

5
5348
by: Steven Bethard | last post by:
Here's what I'm doing: >>> lst = >>> splits = >>> for s in lst: .... pair = s.split(':') .... if len(pair) != 2: .... pair.append(None) .... splits.append(pair) ....
7
3196
by: Jeremy Sanders | last post by:
I have a large string containing lines of text separated by '\n'. I'm currently using text.splitlines(True) to break the text into lines, and I'm iterating over the resulting list. This is very slow (when using 400000 lines!). Other than dumping the string to a file, and reading it back using the file iterator, is there a way to quickly...
4
1830
by: sbucking | last post by:
im trying to split a string with this form (the string is from a japanese dictionary file with mulitple definitions in english for each japanese word) str1 / (def1, ...) (1) def2 / def3 / .... (2) def4/ def5 ... / the varibles i need are str*, def*.
3
1663
by: Aaron Walker | last post by:
I have a feeling this going to end up being something so stupid, but right now I'm confused as hell. I'm trying to code a function, that given a string and a delimiter char, returns a vector of the sub-strings. Here's what I have (I've thrown a main() in there for this mail). --- #include <iostream> #include <string>
2
1505
by: John Perks and Sarah Mount | last post by:
I have to split some identifiers that are casedLikeThis into their component words. In this instance I can safely use to represent uppercase, but what pattern should I use if I wanted it to work more generally? I can envisage walking the string testing the unicodedata.category of each char, but is there a regex'y way to denote "uppercase"? ...
1
1388
by: madrobmegee | last post by:
I am wondering if any one knows how to split/parse a string of text up at special defined characters, such as a comma. As I need to split it into arrays to be displayed on a form.
6
2889
by: chezz | last post by:
Hey i looked at some earlier discussions on this topic and they seem a bit complex i found this code example on another site - char str = "200.0.0.90-200.0.0.223"; char *first = strtok(str, "-"); char *second = strtok(NULL, "\0");
4
1298
by: pkj7461 | last post by:
I want to split a string based on a pattern. my string is something like this. 10/8/2007 5:03:06 PM thakurab *************RECIVED MAIL FROM MIKE FOR THE PQR AND DPS CRETION*********************** PQR Start Time: 10/08/07 16:29:09 New PQR State: Assigned Respond Due Date: 10/09/07 00:29:09 Resolve Due Date: 10/10/07 16:29:09 ...
3
1133
by: =?Utf-8?B?cm9kY2hhcg==?= | last post by:
hey all, i have the following string value: xx__field_name__0__0 is it possible to split the string using the double underscores? thanks, rodchar
4
1635
by: Eyes Of Madness | last post by:
I'm doing a program for a class of mine and I am having trouble splitting my strings up. I know you can do something like: a = '012345' a returns 012 but I am inputing strings of varying length and I cant just do the above notation. I need to split the string into groups of 3 in order to work. Any help would be much appreciated.
0
7753
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8095
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7847
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6500
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5645
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5332
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2265
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1365
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1096
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.