Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6968051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:24:04+00:00 2026-05-27T16:24:04+00:00

I have a simple java statement along the lines of: String[] ykl = yklList.get(0).split(

  • 0

I have a simple java statement along the lines of:

    String[] ykl = yklList.get(0).split(" ");  

where, yklList is an ArrayList containing sentences which are split into words. The above works fine.

When I now try and loop this:

Loop:1
for (int i=0;i<=4;i++)
{
  String[] ykl = yklList.get(i).split(" ");
}

It does not seem to work and throws me a compile error. Is the above loop wrong?

I have another for loop after the above:

Loop:2
for (String ykl : yklList)
{
//do something
}

It throws me a compile error here saying:

cannot find symbol
symbol  : variable ykl
location: class test
for (String ykl : yklList) 

Presumably Loop 1 went wrong somewhere?

Edit:

The “full” code looks something like this:

for (int i=0;i<=yklList.size()-1;i++)
{
String[] ykl = yklList.get(i).split(" ");  

}       
for (String y : ykl)  
{  
t.add(y);  
}   

and the error is:

cannot find symbol
symbol  : variable ykl
location: class test
for (String y : ykl) 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T16:24:05+00:00Added an answer on May 27, 2026 at 4:24 pm

    Regarding to your update:

    You define ykl in the first loop. So the variable is not in the scope of the second loop. Your code have to look like this:

    for (String yklSentence : yklList) {
       String[] ykl = yklSentence.split(" ");  
       for (String y : ykl) {  
         t.add(y);  
       } 
    }
    

    By the way: If you would use an IDE like Eclipse you would see those errors in the editor!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very simple parser splitting string: import java.io.*; import java.util.ArrayList; import java.util.List;
I have a simple web application written in java which has servlets accessing the
I have a simple Java class that I need to serialize to be stored
I have done simple java app for blackberry, while building am getting following error.
I have a simple Java class that has some methods: public class Utils {
In general, is it a best practice to have simple POJO Java classes implement
I have a very simple Java RMI Server that looks like the following: import
I have a really simple Java class that effectively decorates a Map with input
I have written a simple Java dispatcher with a daemon thread to handle the
I have the following simple Java code: package testj; import java.util.*; public class Query<T>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.