• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

splitting a string

 
Ranch Hand
Posts: 518
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,


Name/username Host Dyn Nat ACL Port Status
5102/5102 (Unspecified) D 0 Unmonitored


From the above i have to display the Name/username alone.I have tried the below code

it gives the following output


Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host
Name/username Host Dyn
Name/username Host Dyn Nat
Name/username Host Dyn Nat ACL
Name/username Host Dyn Nat ACL Port
Name/username Host Dyn Nat ACL Port
Name/username Host Dyn Nat ACL Port
Name/username Host Dyn Nat ACL Port
Name/username Host Dyn Nat ACL Port
Name/username Host Dyn Nat ACL Port Status
Name/username Host Dyn Nat ACL Port Status
Name/username Host Dyn Nat ACL Port Status
Name/username Host Dyn Nat ACL Port Status
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102
5102/5102 (Unspecified)
5102/5102 (Unspecified)
5102/5102 (Unspecified)


I think i have to check the string length and i have to use the separator to split the strings.but i dont know how to do in code.anybody explain me in code please.

Thanks.
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
mystring = "firststring\secondstring some words"

First split it using array[] = mystring.split(" ");

then only that the first i.e names[] = array[0].split("\")
names[0] = "firststring"
names[1] = "secondstring"

a working example

public class StringSplit {
public static void main(String args[]) throws Exception{
new StringSplit().doit();
}

public void doit() {
// extra spaces
String s3 = "Real How To";
String [] temp = null;
temp = s3.split(" ");
dump(temp);
}

public void dump(String []s) {
System.out.println("------------");
for (int i = 0 ; i < s.length ; i++) {
System.out.println(s[i]);
}
System.out.println("------------");
}
}
/*
output :
------------
Real

How
To
------------
 
Amod Mulay
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
mystring = "firststring\secondstring some words"

First split it using array[] = mystring.split(" ");

then only that the first i.e names[] = array[0].split("\")
names[0] = "firststring"
names[1] = "secondstring"

a working example

public class StringSplit {
public static void main(String args[]) throws Exception{
new StringSplit().doit();
}

public void doit() {
// extra spaces
String s3 = "Real How To";
String [] temp = null;
temp = s3.split(" ");
dump(temp);
}

public void dump(String []s) {
System.out.println("------------");
for (int i = 0 ; i < s.length ; i++) {
System.out.println(s[i]);
}
System.out.println("------------");
}
}
/*
output :
------------
Real

How
To
------------
 
Ranch Hand
Posts: 132
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have a look at the Scanner class.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic