473,748 Members | 11,134 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 21677
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
5355
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
3206
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 iterate over the lines? I tried using newpos=text.find('\n', pos), and returning the chopped text...
4
1838
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
1670
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
1512
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"? Thanks John
1
1398
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
2895
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
1307
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 Resolved On: 10/8/2007 5:23:40 PM pandeyra usually, there is date/time in the start of sentence...
3
1139
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
1639
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
8989
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8828
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9537
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9367
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9319
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
8241
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
3309
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
2
2780
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2213
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.