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 1084847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:36:51+00:00 2026-05-16T22:36:51+00:00

Hey, I am searching each array separately for specific inputs from a user. if

  • 0

Hey, I am searching each array separately for specific inputs from a user.

if ($.inArray(i.val(), helloInputArray) > -1) { //IF HELLO
                    if (hello == 0) { //HAVE YOU ALREADY SAID HI?
                        r = Math.floor(Math.random()*4);                        
                        o.html(o.html()+helloOutputArray[r]);
                        hello = 1;
                        i.val('');
                    } else { //IF YOU'VE ALREADY SAID HI...
                        o.html(o.html()+'I already said hi to you!<br />');
                        i.val('');
                    }
                } else if ($.inArray(i.val(), byeInputArray) > -1) { //IF GOODBYE
                    if (bye == 0) {
                        r = Math.floor(Math.random()*4);                        
                        o.html(o.html()+byeOutputArray[r]);
                        i.val('');
                    } else {
                        o.html(o.html()+'I already said goodbye... Go away!');
                        i.val('');
                    }
                }

Is there any way I can just search all arrays at once, as I’m going to need to search each array for a string.

ahem

so – If I typed ‘ae’, then I want it to go through every item in every array and return ALL the strings with ‘ae’ in it.

^_^ <( bad wording… )

  • 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-16T22:36:52+00:00Added an answer on May 16, 2026 at 10:36 pm

    If I’m understanding you correctly, you want to consolidate your separate arrays into one for the purpose of doing one loop, but you don’t want to modify the original arrays.

    If so, try this:

    if( $.inArray( i.val(), helloInputArray.concat( byeOutputArray) ) > -1 ) {
        ...
    

    The .concat() method will create a copy of the two Arrays joined together as one, so the originals are not modified. That copy is passed to the $.inArray() method as the second parameter.


    EDIT:

    From your comment below, it sounds like you want to test if i.val() is a substring of any items in the array.

    If that’s right, you probably won’t use $.inArray, but rather will use $.each() to iterate of the Array, and test for the value.

    var isInArray = false;
    var value = i.val();
    
    $.each( helloInputArray.concat(byeOutputArray), function(i,val) {
        if( val.indexOf( value ) > -1 ) {
            isInArray = true;
            return false;
        }
    });
    
    if ( isInArray ) > -1) { 
        if (hello == 0) { 
            r = Math.floor(Math.random()*4);                        
            o.html(o.html()+helloOutputArray[r]);
          ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey all here are my tables i have placed in a DIV for each.
Hey, I have been searching all over for a solution to injecting into action
Hey i was searching for a solution for my problem and i nearly have
Hey i have been looking around and i cant find a way to get
*Hey , I have finished developing my app In my iphone apps I have
Hey I just started dabbling with android programming, and from my short period of
hey guys having this really simple problem but cant seem to figure out have
Hey guys I have a object sitting in my tile map for spawn point
Hey so I've been searching around for this topic and couldn't find a whole
Hey Guys is it possible to customize an share option? I am exactly searching

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.