Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MSB18
  • Order by date
  1. MSB18

    Seperating a string and storing as a char

    How do you seperate a string such as "ABCDEFG" in to "A","B" etc and store each letter as a character, i know you can seperate the string as follows: String s="ABCD"; String s1= s.substring(0,1); String s2= s.substring(1,2); //etc.. //and you have s1=A...
  2. MSB18

    How to seperate strings

    thank you for you help
  3. MSB18

    How to seperate strings

    Help!!!!!!!!!!!!!!!! Can anyone help me with my problem, i need to seperate a string e.g. ABCDEFG, after the second character. Bearing in mind the string is from a user input, how to i locate the position of seperation and how seperate it into two variables? Thank you in advance MSB18
  4. MSB18

    how to ?

    Thanks for your help, i'm very new to java programming, but have programmed before in Delphi, i just could not work this out, thank you again MSB18
  5. MSB18

    how to ?

    I know how to add two strings together using java, but how do you seperate them a certain point, such as after the 'B' in ABCD to make 'AB' and 'CD'????

Part and Inventory Search

Back
Top