Using Split Method To Reverse A String
Oct 19, 2014
In this exercise, create a program that asks a user for a phrase, then returns the phrase with the words in reverse order. Use the String class's .split() method for this.
Example input
The rain in Spain falls mainly on the plain
Example output
plain the on mainly falls Spain in rain The
While I understand the assignment, nowhere in the text is it covered how to reverse the order of the words in the string. I understand using the .split method, but not for this exercise.
Here is my code so far.
import java.util.*;
/**
* Java class SplitString
* This program asks for a phrase, and the code allows the phase to return in reverse order.
*/
public class SplitString {
public static void main (String[] args){
//set phrase input and mixed which will be the result
[Code] ....
As you can see, I have been googling this method and have come up nearly empty. My text does not cover the .reverse() method. The only thing it covers with .split() is how to split a string. I also tried StringBuilder with no success.
View Replies
ADVERTISEMENT
Sep 27, 2014
I am currently trying to make a calculator in Java. I want to use the String split method to tokenize the string of characters inputted. I thought I was using the String split method wrongly, because I had surrounded the characters I wanted to delimit with square brackets. However, when I removed the square brackets, the code threw an exception when I pressed the equal button. The exception was a PatternSyntaxException exception. Am I using the String split method wrongly? And why is the exception thrown? Here is my code:
import javax.swing.*;//import the packages needed for gui
import java.awt.*;
import java.awt.event.*;
import java.util.Arrays;
import java.util.List;
import static java.lang.Math.*;
public class CalculatorCopy {
public static void main(String[] args) {
[Code] .....
View Replies
View Related
Sep 21, 2014
So I'm creating a class which when given three inputs uses them as sides of a triangle and tells ther user what type of triangle it is, or if the input is invalid, tells them why it is invalid. I'm readin the input as a string and then trying to split it into a string array, from there checking to see if it has 3 elements.. in which the data is good at that point, and then converting them to ints and checking to see if they're negative ansd finally checking to see if they can work as sides of a triangle ie a+b >c, a+c >b , b+c >a.
I'm trying to split it into an array of strings but am getting an error, and can't seem to figure out why as this should be working from what I've read of the string.split method online.
import java.util.*;
public class TriangleTest{
private int sideA;
private int sideB;
private int sideC;
public static void main(String[] args){
TriangleTest triangle = new TriangleTest("3 4 5");
[Code] ....
The output reads [Ljava.lang.String;@15db9742
View Replies
View Related
Mar 15, 2014
I am trying to get resultset into a string and then use split method to store it in an array but it is not working. i tried to work it seperately as java program but it throws exception "could not find or load main class java."
String ar = "This.is.a.split.method";
String[] temp = ar.split(".");
for(int i=0;i<temp.length;i++){
System.out.println(temp[i]);
}
View Replies
View Related
Nov 15, 2014
I am trying to split the contents of the text file and assign the value on the left of the separator to a variable and the value on the right of the | separator to another variable. Thus I tried out a sample code to print all the values in the split [] first, and ended up with problems. This is the content of the text file:
Crazed Boy|20
Hello|5
MSB|6.5
public class Main {
public static void main(String[] args) {
try {
BufferedReader infile = new BufferedReader(new FileReader("test1.txt"));
for (int i =0; i < 3 ;i++) {
String s = infile.readLine();
String[] ss = s.split("|");
[code]....
I keep getting IOException in my sample code, why is this so ? I assumed the split() method is supposed to output for the 1st iteration:
ss[0] = Crazed Boy
ss[1] = 20
View Replies
View Related
Jan 17, 2015
I used the string split method in the following lines of code like this:
String[] numbers = out.split("[^d.]", 0);
String[] operations = out.split("[.d()]", 0);
When out is equal to the String "2x2.5", the array operations ends up looking like this when it is printed using the toString method:
[, , , x]
As you can see, before the array element x, there are three String variables which only contain whitespace. Why does this occur, and how can I prevent this from happening?
View Replies
View Related
Sep 28, 2014
I am having a problem with the following code. It compiles and runs fine however my output is wrong.
public class SplitString {
public static void main(String[] args) {
String[] string1 = split("ab#12#453", "#");
String[] string2 = split("a?b?gf#e", "[?#]");
for (int i = 0; i < string1.length; i++) {
System.out.print(string1[i] + ",");
[code]....
The split method in the String class returns an array of strings consisting of the substrings split by the delimiters. However, the delimiters are not returned. Implement the following new method that returns an array of strings consisting of the substrings split by the matching delimiters, including the matching delimiters.public static String[] split(String s, String regex)For example, split("ab#12#453", "#") returns ab, #, 12, #, 453 in an array of String, and split("a?b?gf#e", "[?#]") returns a, b, ?, b, gf, #, and e in an array of String.
View Replies
View Related
Jan 23, 2010
I am trying to split a string based on length(example length 5) of the string. But I am having a issues with this substring(start, end) method. I get all substring which are of length 5. But if the last substring is less than 5 then I am not getting that last substring. But I need the last substring even if it is less than 5.
String s = "fjdjfdfjgffgjhfjghfjkhjhjh";
String spLine;
for(int i=0; i<s.length(); i=i+5){
spLine = s.substring(i, (5+i));
}
>
View Replies
View Related
Jan 27, 2014
Is there any way how to reverse a string value without using reverse(),length()?
View Replies
View Related
Mar 25, 2015
I have the the string value similar to the one which i have to split based on the delimited ","
String SampleString=" 'ab,c', 'xyz', lm,n,o "
I know I can easily call split function which will eventually split the above string. But in my case the delimiter "," , is also a part of the string. If I call the function SampleString.split(',') I will get the output as listed below
ab
c
xyz
lm
n
o
but the expected output is
abc
xyz
lmno
View Replies
View Related
Feb 28, 2015
I want to reverse a String that is input
This is what I have tried so far
public class ReverseStringTest {
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
System.out.println("Enter String to replace:");
String temp=in.next();
System.out.println("Reverse String is:"+reverseString(temp));
[code]...
But its not working it is return same string that is Input.
View Replies
View Related
Apr 19, 2014
I am trying to reverse a string. Here is my code:
import java.util.*;
public class ReverseLettersInString {
public static void main (String[] args){
Scanner in = new Scanner (System.in);
String s;
[Code] .....
PROGRAM OUTPUT:
Enter string
me
e
The program returns e instead of em
View Replies
View Related
Oct 7, 2014
Here is my code:
public class ReverseString {
public static void main(String args[]) {
//quick wasy to reverse String in Java - Use StringBuffer
String str = "The rain in Spain falls mainly on the plain";
String revString = new StringBuffer(str).reverse().toString();
[Code] .....
The requirements: The program runs but for some reason it is not meeting the requirements. use the String method toCharArray and a loop to display the letters in the string in reverse order.
View Replies
View Related
Oct 29, 2014
I'm trying to make a piece of code that writes a for Loop program using OOP. I need to create a class, name that class and have it contain several reverse methods and use a runner class to test it.So far this is the code I've come up with. Does it work or not?
public class loopDemo{
public static void main(string[]args){
String alphabet = "abcdefghijklmnopqrstuvwxyz";
public String reverse(){
char myBoi;
int myIta;
String tebahpla
for(myIta=25j i>=0 ji++){
tebahpla+= alphabet.charAt(myIta);
View Replies
View Related
Jun 10, 2014
I know adjacent delimiters create empty token but is there any exception regarding last pair of delimiters ??
String a[]=":ab::cde :fg::".split(":"); // Creates 5 tokens
String a[]=":ab::cde :fg:: -Space-".split(":"); // Creates 7 tokens
View Replies
View Related
Sep 15, 2014
I have a string that look like this
"dfhsdfhds | dsfdsfdsfd dsfjkhdskjf ||ER|| jdkshfuiewryuiwfhdsfsd er dsfjsgrwhfjkds ||ER|| jkshruiewryhijdknfjksdfhdksg | "
I want to split it by "||ER||"
I try this but it splits the single "|" to not just the "||ER||" like I want.
String[] separated = response.split("||ER||");
Log.d("token",separated[0]);
Log.d("token",separated[1]);
View Replies
View Related
Nov 11, 2014
String path = "/AUTOSAR/Os_0?type=EcucModuleConfigurationValues";
String path1[] = path.split("?type");
I want to split string in such a way that I should get the content before "?" in an another variable. I tried various way but some how I am not getting expected behavior.
View Replies
View Related
Aug 30, 2014
I have a String as follows: "the|boy|is|good"
now, I want to split this string using the "|" delimeter.
I tried this :
String line = "the|boy|is|good";
line.split("|");
But it didn't split it. Is there some regex for "|"?
View Replies
View Related
Mar 30, 2014
I want to cut my string from space char but i am getting exception....
Java Code:
import java.util.Scanner;
import java.util.StringTokenizer;
public class NameSurname {
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
String s0,s1=null,s2 = null,s3=null;
s0=sc.next();
[Code] ....
Console:
Lionel andres messi
Exception in thread "main" java.util.NoSuchElementException
at java.util.StringTokenizer.nextToken(Unknown Source)
at java.util.StringTokenizer.nextToken(Unknown Source)
at com.parikshak.NameSurname.main(NameSurname.java:15) mh_sh_highlight_all('java');
I/p -O/p:
my s0=Lionel andres Messi
And I want to break it as soon as i find space and save it in s1,s2 and s3
s1=Lionel
s2=andres
s3=messi
View Replies
View Related
Feb 2, 2015
I've found different examples on line, but none that use the split method with a multidimensional array. I would like a user to input coordinates (x,y) for city locations and store them into a 2-D array. For the user to input the x,y-coordinates on one line I need to use split(',') and then parse the string array to a double which will then be used to calculate the distances from one another.
My issue is how to store the String vales into the 2-D array. I do not want to store the x-value at even (cityArray[0]) and y-value at odd (cityArray[1]) 1-D locations.
View Replies
View Related
Feb 23, 2015
I am trying to create a method that reverses the digits of a number.
import java.util.*;
public class KDowlingWeek7 {
static Scanner console = new Scanner (System.in);
//Scanner input = new Scanner(System.in);
public static void main(String[] args) {
[Code] .....
The error I get is :
Error: cannot find symbol System.out.print(reverseDigit + " ");
Symbol: variable reverseDigit
Location: class KDowlingWeek7
View Replies
View Related
Jun 23, 2014
I am encountering a problem while running this small piece of code.
public class TestSplit{
public static void main(String[] args){
String myWords[]="My.Home.Is.Being.Painted".split(".");
for(int i=0;i<myWords.length;i++)
System.out.println(myWords[i]+" ");
}
}
The problem is: it does not run at all. No error message is displayed. It just returns to the command prompt when i run it. Where am i wrong?
View Replies
View Related
May 10, 2014
String str = "#11* 1# 2*12# 3"
required o/p in array as
#11
* 1
# 2
*12
# 3
i.e splitting the strings for every 3rd string and storing it in an array of strings ...
View Replies
View Related
Mar 3, 2014
Regular expression which I want to use to split a string. The string could look similar to this:
"a = "Hello World" b = "Some other String" c = "test""
The String is read from a file where the file contents would be:
a = "Hello World" b = "Some other String" c = "test"
After splitting I would like to get the following array:
String[] splitString = new String[] {"a", "=", ""Hello World"", "b", "=", ""Some other String"", "c", "=", ""test""}
I know I could just write a simple text parser to go over the string character by character, but I would rather not do it to keep my code clean and simple. No need to reinvent the wheel.
However, I just cant seem to be able to find the right regular expression for this task. I know that a RE must exist because this can be solved by a finite automaton.
View Replies
View Related
May 4, 2014
I have included split() to put a string read from a given file into indexed array. Looking for a word position (not char position number in addition to the line number I have already written. Line number works fine, however word position isn't quite right.Below is my code:
import java.io.*;
public class Word implements Comparable, TreeComparable{
String word;
int count;
int wordpos;
ObjectList lines;
private SuperOutput so;
[code]....
View Replies
View Related
May 16, 2015
I am not able to understand how split method in java works
If I have
value.toString().split(";", -6);
or
value.toString().split(";", -2);
what will be the difference...basically , i want to know how does negative limit in a split works...
View Replies
View Related