Finding A String Word In Char Array

Feb 13, 2015

I'm trying to find a word in an array of char.....but I'm stuck. How to formulate the code to step through the array and pick out the word. This is what I have so far...

public static void searchAcross(String string, char[][] puzzle) {
// Gets the number of rows in the matrix
int rowLength = puzzle.length;
//Gets the number of columns in the matrix.
int colLength = puzzle[0].length;

[Code] ....

View Replies


ADVERTISEMENT

Finding A String In Array

Oct 4, 2014

My current problem is when im trying to choose case 2 and call markItemOnLoan i cant seem to find the title i want after i enter a few. I will include all of my code but i have mentioned what I am currently stuck on :

import java.util.Scanner;
public class Library {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
MediaItem mCall = new MediaItem();
Library call = new Library();// makes instance

[code]....

View Replies View Related

Convert String Array To Char Array

Apr 12, 2015

I have an array of Strings, one on each line and I need to convert them into an array of char's.

For Example:

This
is
an
Example
of
what
my
input
is.

In order to accomplish that I did the following-

String[] lotsOfText = a.gettingAnArrayAsAReturn();
char [][] myCharArray = new char [lotsOfText.length] [lotsOfText.length];
for(int i=0; i<lotsOfText.length; i++){
for(int j=0;j<lotsOfText[i].length();j++){
myCharArray[i][j] = lotsOfText[j].charAt(j); }}

But whenever I try this and then try to print the output :

for (int i = 0; i < lotsOfText.length; i++) {
for (int j = 0; j < lotsOfText[i].length(); j++) {
System.out.print(myCharArray[i][j]);
}
}

I get nothing. I'm not sure what's the flaw in my logic, is it the char array initialization that's wrong or is it something else ?

View Replies View Related

How To Compare String Input To Char Array

Feb 8, 2014

What I'm trying to do is compare String input to a char array. Let me make it a little more plain, I'm working on a cipher assignment, and my line of thought is this: I will get String input from the user, COMPARE the characters in the string input to an alphabet array, which will then be compared to the cipher array so that the cipher's counterpart can be chosen over the alphabet's. Any way that I might compare the random input keyed in by the user to that alphabet array?

View Replies View Related

Char Array To A String Array With Hex

Nov 16, 2010

I have a string array but each cell in the 1d string array stores each character the text file is :

"START START START
The quick brown fox jumps over the lazy dog 1234567890-= !"$%^&*()_+ QWERTYUIOP{}ASDFGHJKL:@~|ZXCVBNM<><? /.,mnbvcxzasdfghjkkl;'#][poiuytrewq789654123.0
+-*/``""$% hello this is a test file using all the characters availible on the keyboard for input END END END END"

so in the string it is:[0] = S, [1]=A, [2]=R ...ect along the text basically i need to convert each character in each cell of the 1d string array to its hesidecimal value..i have created my own method which will take in a char and return a string containing the charcters hex value.

public static String toHex(char c) {
char char2ascii = c;
int i = 0;
int num = (int) char2ascii;
String hex ="";

[code]...

what i want to do is run each cell through the toHex method so i eventually have a string array containing the hex value of each character in my text.

example..i want:

String[] hexarray = S, T, A, R, T

a run it through my method to convert to hex then it will become

String[] hexarray = 53, 54, 41, 52, 54

Im not allowed to use inbuilt libarys and classes to do the hex conversion thats why i have my own method for it .

View Replies View Related

Binary Tree - Storing Each Word As String And Int Frequency For Each Time Word Occurs

Apr 27, 2015

I have built a binary tree, from a file. In each node, I am storing each word as a string, and an int frequency for each time the word occurs. For the assignment, I need to find how many words occur only once in the file. I wrote the program, but for some reason I am getting a number different from what my professor is expecting.

As far as I know, this file has loaded into the tree correctly, because all of my other answers in the assignment are correct. What am I doing wrong?

public void findUnique() {
System.out.println("There are " + findUniqueWords(root, 0) + " unique words.");
}
private int findUniqueWords(Node subTree, int uniqueCount) {
// Base Case: At the end of the branch
if(subTree == null){
return uniqueCount;

[Code] ....

View Replies View Related

Blue Pelican Java - Array Of Hope - Char Array For Loops?

Feb 13, 2014

i am working on the same project and i got the code to make them print going down but not sideways.

public class ArrayofHope
{
public static void main(String args[])
{
System.out.println("Decimal Character
");
for(int j = 65; j <= 90; j++)
{
System.out.print(j);
System.out.println(" " + (char)j); //Character
}
}
}

View Replies View Related

Char To String

Oct 14, 2014

I need making char[] to a string im not entirely sure what to change i'm just suppose to use a string value but the upperclassmen used char:

char[] number = clear.toLowerCase().toCharArray();
for(int c = 0; c < number.length; c++) {
if(digit[c] < 'a' || digit[c] > 'z')
continue;

[code]...

View Replies View Related

How To Put All Char In Loop To String

Mar 16, 2014

I can't figure out how to have all of the random characters generated to go into the String. Below I can only get the last character to covert over to a String.

System.out.println("Original random character string:");
String printingString = "a";
for (int i = 0; i < 50; i++)//loop to obtain 50 random characters
{
char randomChar = (char) ((Math.random() * 255) +32);
System.out.print(randomChar);
printingString = Character.toString(randomChar); }
return printingString; }

View Replies View Related

Getting Char At A Location In String

Oct 21, 2014

I found a fun program online and something so simple is giving me an issue. I c++ it is pretty simple fix, I can just call the strings location like an array. In java this is not the case. So far i have tried:

myString.charAt();
myString.indexOf();

There are a few other I found on google but I forget at the moment. I am just trying to close the gap on a string. It was a full sentence and I used replaceAll a few times to get several words I didn't want in the file out.

View Replies View Related

Comparing Char In If That Convert To String

Apr 30, 2014

what will i compare in if statemet is the 1st letter of each if i have code="a" and name="Angelina" first letter of each is "a" and "A" then in convert it to string so that i can make it uppercase but when i compare it in if statement it always go into "not x" but the ouput that im getting is x=A y=A then it always direct me into else statement.

String code = "a";
String name = "Angelina";
char c = code.charAt(0);
char n = name.charAt(0);

[code]...

View Replies View Related

Check How Many Times Char Is Used In The String

Apr 1, 2014

I tried to make a program that takes a string str, and char a and checks how many times the char is used in the string.

Example: the string Welcome and the letter e, is 2 times. so the program should print 2.

It compiles but when I run it and enter the information, i cannot get the printing line out.

Heres my code:

import java.util.Scanner;
class program
{
public static void main(String[] args) {
Scanner user_input=new Scanner(System.in);
String str;
String b;
System.out.print("Please enter a word");

[Code] .....

View Replies View Related

Unable To Count Each Char In A String

Jun 5, 2014

I am trying to count each char in a string. For example A = 1, B =2, C=3, I am not looking for their binary value. So the word "At" would

AT= (A=1 +T=20)=21.

I know how to do this in C++ because I am able to treat a string like an array.

Java Code: void printFile()
{
int sum=0;
String line;
for(char cr ='A';cr<'Z';cr++)
{
for(int i=0; i<myList.size();i++)

[Code]...

View Replies View Related

If Statement - Char To String Casting?

Aug 3, 2014

import java.io.IOException;
import java.util.*;
public class Guesser {
public static void main(String[] args) throws IOException {
 char[] alphabet = "abcdefghijklmnopqrstuvwxyz1234567890 .,:;'-".toCharArray();

[Code] .....

I'm writing a program which will take a three letter word (for now) and then try to guess the word over and over again until it finds it, then print the word and the amount of tries it took to find it.

The problem: at the moment the program will find the word but not break out of the for loop when it does. I think it doesn't like the char to String conversion somewhere along the line.

View Replies View Related

Split String From Space Char

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

Check How Many Times Char Is Used In String

Apr 1, 2014

I tried to make a program that takes a string str, and char a and checks how many times the char is used in the string. Example: the string Welcome and the letter e, is 2 times. so the program should print 2. It compiles but when I run it and enter the information, i cannot get the printing line out.

Heres my code:

import java.util.Scanner;
class program
{
public static void main(String[] args) {
Scanner user_input=new Scanner(System.in);
String str;
String b;
System.out.print("Please enter a word");
str=user_input.next();

[Code] ....

View Replies View Related

Why Print Char 0 (zero) plus String Does Not Work

Apr 3, 2015

I have a simple doubt. I was studying and create some code to check the result and I found out a strange situation.
 
Whats wrong with this code? Why it does not print anything?
 
char = 0; //integer value
System.out.println( c +" String ");
 
and why this next works very well?
 
char = 1; //integer value
System.out.println( c +" String ");
 
I know that char is stored as a positive integer and assign with 0 is different of assign with '0'.

View Replies View Related

Finding Space In String

Jan 19, 2015

I have an assessment for college, the part of my code that im struggling with is the part where the user enter their first name followed by a space and then their second name. I m using ---------------fullname = JOptionPane.showInputDialog("enter your firstname followed by a space then your second name " ); ------------- to capture this. the issue is if the user only enter 1 name I need to output an error. the issue is I cant find a way to tell if the user entered a second name. This is what I have so far:

public void makename() {
// makes an inputbox to ask their name
fullname = JOptionPane.showInputDialog("enter your firstname followed by a space then your second name " );
 //separates the first and second name into 2 strings in order to make the username
 
[code]....

The problem is it accepts anything I type in without causing an error. What should I type in to stop this? ive tried anything but I cant find a way to tell if a surname has been entered or not.

View Replies View Related

Convert A String Of ASCII Code To Char?

Aug 25, 2014

I am trying to figure out how to convert a string of ASCII code into char.I know that you can use (char) to convert it, but the issue is you cannot really just it for Strings.

View Replies View Related

Return Given Char That Matches Input String

Apr 17, 2015

Processing a string. How would I only return a given char that matches the input string e.g. v and/or n and/or m.

Everything else that does not match will return a '*' - e.g. user input = t result = *

I assume I need to also iterate through this input string using charAt() ?

View Replies View Related

Finding String Length Without Variables

Oct 14, 2014

The problem asks me to write an expression whose value is the number of characters in a specific string. Normally, it would be a simple task of using the String.length() method, but that is not allowed. In fact, no variable declaration is allowed (it's a MyProgrammingLab assignment, if any are familiar).

Simply put, if I have a String "This is a sample string." is it possible to find the length without assigning it to anything?

In other words, the code must be able to go into the parentheses of System.out.println( ); and correctly print the length of said string.

The answer, for those curious:

System.out.println("This is a sample string.".length());

I didn't know the .length() method could be called on a literal. Now if only I could find out how to close this thread...

View Replies View Related

Finding Divisible Numbers And Replace With String

Jul 13, 2014

My interest in Java leads me to try and print numbers from 1-100. The output should show all numbers from 1-100 and each number that is divisible by by 13 should be replaced with a string "Fuzzy".

public class Fuzzy {
public static void main (String[]args){
for(int i = 0; i < 100; i++)
if(i % 13==0)
System.out.print(i + "fuzzy");
}
}

View Replies View Related

Finding Most Common Character In A String Using For Loop

Feb 7, 2007

import javax.swing.*;
public class mostFrequent{
public static void main(String args[]){
char index;
String s;
s = JOptionPane.showInputDialog("Enter String here");
int currFrequency = 0;
for(index = 0; index<s.length(); index = index++){
int i = 0;
for(i = 'A'; i<='Z'; i++){
if(i==s.charAt(index)){
currFrequency = currFrequency + 1;
}
}
}
System.out.println("end");
}
}
//my code so far

View Replies View Related

Char Array Goes Out Of Bounds

Jan 16, 2014

Goal this time is to take a charArray, copy it into another charArray while reversing the things in it.

E.g. charArray["!ollaH"] into charArrayNew["Hallo!"]

My first idea was to revert the stuff in the Array with a ! cause i saw earlier that u can work with that too revert booleans. Sadly i didnt happen to make it work.

Next thing i thought of was a for loop to go trough the charArray and copy every section into charArrayNew just at the opposite end.

Java Code:

import java.util.Arrays;
public class aufgabe43 {
public static void main(String[] asgr){
char[] charArray

[Code] .....

Eclipse doesn't show any errors, and as u told me last time i did include import java.util.Arrays; to output the array in the end.

When i try to compile the code eclipse returns with an error

Java Code:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 68
at aufgabe43.main(aufgabe43.java:8) mh_sh_highlight_all('java');

Which I frankly don't understand since the array . Length is exactly the same.

View Replies View Related

Least Significant Bit / Char Array

Oct 29, 2014

So I am working on a project for my Java course and for whatever reason, I am absolutely struggling with this assignment. I've made some progress but I can't seem to completely wrap my head around the algorithm I'm being told to use. I feel that everything is correct up to a particular point.I believe I am having issues moving a char array into a char matrix.

package edu.cofc.csci221.ui;
import java.lang.*;
public class Decoder
{
private int[][] M;

[code]...

Would I just need to loop through lsb one at a time and assign them to sequential spots within D? Basically call my get binary value and such in the outer loop and then use the inner to loop through both arrays and reassign values?

View Replies View Related

2D Char Array - Getting Information From One To Other

Apr 10, 2014

I'm trying to take the information from one 2d char array and put it into another char array but instead of traversing the array left to right I want the new array to be top to bottom.

Example fg would be fh
hi gi

I'm having trouble getting the information from one to the other.

[code]public static char[][] translateIt(char[][] english){
int rows = english.length;
int columns = english[0].length;
char[][] chinese = new char[columns][rows];
for(int j=0; j < columns; j++){
for (int i = 0; i < rows; i++){
//chinese[i][j] = english; this is commented out because it didn't work.
}//Ending bracket of columns for loop
}//Ending bracket of rows for loop

return chinese;
}//Ending bracket of translateIt[code]

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved