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

  • SEARCH
  • Home
  • 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 6021679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:44:54+00:00 2026-05-23T03:44:54+00:00

Sometimes, due to faulty data collected, a line generated by the following method ends

  • 0

Sometimes, due to faulty data collected, a line generated by the following method ends up looking like this when saved: “,-1,0” or something similar, with no name, an ID of -1 and a level of 115 or something else. (The lines are formatted like this (excluding quotes): “name,id,level” (e.g: “Honour guard,5514,115”)

What i need to do is to remove all strings in monstersToAdd that contains -1.
I’ve tried this, but with no success:

private void combineInfo() {
    for(int i = 0; i < monsterList.size(); i++){
        monstersToAdd.add("" + names[i] + "," + IDs[i] + "," + levels[i]);
    }
    monstersToAdd.remove(monstersToAdd.contains("-1"));
}

with the line monstersToAdd.remove(monstersToAdd.contains("-1")); I was trying to remove all strings in monstersToAdd that contains “-1”. This however does not work, probably for good reasons, which I unfortunately don’t know of yet.

I would really appreciate any input :).

  • 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-23T03:44:54+00:00Added an answer on May 23, 2026 at 3:44 am

    Its easier if you dont even add them, than adding and removing them so check the sanity of ID names and levels before adding them

    private void combineInfo() {
    for(int i = 0; i < monsterList.size(); i++){
        //add only if name is non empty, ID is not negative and level is below 100
        if(!(names[i].isEmpty() || IDs[i]<0 || levels[i]>100))
        monstersToAdd.add("" + names[i] + "," + IDs[i] + "," + levels[i]);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Due to legacy function calls I'm sometimes forced to write ugly wrappers like this
I am trying to data from a server. Sometimes my code fails due to
Sometimes due to the SCM not strictly remembering the timestamp of files the generated
Sometimes i face the following problem : string txt = con.Request.Params[Par_name].ToString();//the original par value
Sometimes when using Visual Studio it displays a prompt with a filename: This file
Sometimes I heard people discussing about the start-up time for Java. It seems this
Sometimes, tomcat restart will cause my application stop immediately so that my consuming data
Sometimes I want to have temporary comments fully left justified on a line (//)
Sometimes when debugging with my application I encounter Contract.Requires() failing due to the condition
Sometimes I have come across this issue that whenever I change the order of

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.