indexof is a method in programming languages like Java, C#, JavaScript, etc. that returns the first occurrence of a letter in a string.

learn more… | top users | synonyms

-1
votes
2answers
43 views

Split string, doubles and ints from a string using IndexOf()

I want to split strings, ints and doubles from a string. The string is entered in a textbox and can contain all three. (For example: Hello 13 94 3,2 6.4 bye) I want to split them and sum them up. Then ...
-1
votes
2answers
61 views

Weird behavior with indexof method in c# [closed]

I have this code, where entities is a List <String> received by parameter. I tried to cast entities[x] to string in any way possible, even it already being a string. I also checked entities[x] ...
0
votes
1answer
36 views

Groovy Find Index of Element in Map

i have the following Groovy Map , def mymap=["TXT_TXT":1,"IMG_TXT":2,"TXT_IMG":3,"IMG_IMG":4] How can i find index of an element in this map?
0
votes
6answers
55 views

Getting Index of an item in an arraylist;

I have a Class called AuctionItem. The AuctionItem Class has a method called getName() that returns a String. If I have an ArrayList of type AuctionItem, what is the best way to return the index of an ...
4
votes
5answers
79 views

Replace strings in a long String:

I have the following string: Where Are You [Employee Name]? your have a [Shift] shift... and a list of strings that contains: 1. Employee Name 2. Shift I need to find the given strings in ...
0
votes
3answers
27 views

Remove a tag and content of it by substring and indexof in javascript

i want to convert this: <html> s <RB:Block_Left>sss</RB:Block_Left> s hello </html> to this, <html> s s hello </html> and this code must be in the textarea ...
0
votes
3answers
27 views

Finding a specific character in an array

So let's say I have an array that looks like this: weather = ["sun", "clouds", "rain", "hail", "snow"] And I want to find and display all of the strings which have the letter "s" in them. This is ...
2
votes
6answers
86 views

Java - Removing char at

I don't think I have a firm understanding of why -1 works in this code: is it just a place marker allowing the program to continue to run? Any help or guidance would be greatly appreciated. public ...
2
votes
4answers
49 views

More than one IndexOf possibilities

I am looking for a way to parse a substring with a few different terminating characters that could possibly be used. Should I be using a different method or is there a way to use regular expressions ...
1
vote
1answer
21 views

Using IndexOf and/Or Substring to parse data into seperate columns

I am working on migrating data from one database to another for a hospital. In the old database, the doctor's speclialty IDs are all in one column (swvar_specialties), each seperated by commas. In the ...
0
votes
2answers
94 views

activity_main.xml: String index out of range: 0 in Android Code

That's my activity_main.xml, when I try see my Graphical it's returned any errors: Exception raised during rendering: String index out of range: 0 Exception details are logged in Window > Show View > ...
0
votes
5answers
63 views

How to return the next indexOf after a previous?

For example: str = "(a+b)*(c+d)*(e+f)" str.indexOf("(") = 0 str.lastIndexOf("(") = 12 How to get the index in second bracket? (c+d) <- this
0
votes
3answers
69 views

Which outperforms the other?(related to string)

I don't know how IndexOf() method of String object works and so I would like to know which outperforms the other with the 2 following implementations: At first, I want to introduce a little about the ...
1
vote
4answers
41 views

In my jQuery why indexOf does not find key from my array?

I've been trying to get it work but nothing seems to help. So I have two images both in pictures array. What I want to do is that when you click previous picture next one appears. I'm pretty sure the ...
0
votes
5answers
52 views

Search for a or b in a string - Javascript

How can I search if my string contains a or b or c in JavaScript? I need to test if string contains "is" or "test" or "string". var string = "This is my test string to search"; var result = ...
1
vote
0answers
67 views

java indexOf find aaa and replace with b

I am trying to find a pattern of "aaa" and replace it with "b" for example using indexOf but it isn't working correctly: private boolean matchCase; private boolean wholeWords; private void ...
-3
votes
1answer
78 views

Best algorithm to validate that all items of one string array occur in another string array

I have two string arrays, one containing file names like file1.docx, file2.docx, file3.docx and another array comes from UI controls and has to be like first one but having date added. I need to ...
1
vote
2answers
45 views

How can I get a line of string from a large block of string?

What I'm trying to do is get a segment of a large String. I have tried using indexOf(), but that fails completely when it comes to repeated text. My end goal is for a user to be able to select text in ...
0
votes
2answers
89 views

Java string index out of range

So I get that String index out of range means that I'm exceeding the range of a collection, but I'm not quite sure how I'm doing that with my code. This code is supposed to read from a text file ...
1
vote
1answer
74 views

why IE7 javascript array.indexOf is not working? [duplicate]

why in IE7 javascript array.indexOf is not working? Here is one sample function loaderFn() { var arr=["0","1","2"]; var b = arr.indexOf("1") alert("Index of 1 is "+b); } In IE7 in line ...
1
vote
2answers
68 views

Checking if two dimensional array contains one dimensional

I have two arrays - one dimensional and one two dimensional. a = [[1,1],[2,2]]; b = [1,1]; I want to check if 'a' has element like 'b'. We see that 'a' constains [1,1] and b is [1,1] so lets check ...
1
vote
1answer
65 views

How do I find the index of multiple objects in an ArrayList when they are identitcal

In this I am storing words in one arraylist and the respective phone-number that corresponds to it in another arraylist. I want to be able to enter a number and return all words in the other list that ...
1
vote
1answer
48 views

How can I find all of the indices of a string in a different string?

My question is pretty straight forward, how can I find all the indices of a string inside of another string? This is the code I wrote but the problem is that all it does is return the exact same index ...
1
vote
2answers
83 views

In an ArrayList of Stacks, why are the indexes incorrect if a Stack(s) are empty?

I have an ArrayList of Stacks, in which I add an element to one of the Stacks and iterate through the list printing the index of each Stack. Then I remove the element from the previous Stack, add it ...
1
vote
1answer
61 views

jQuery filter function causing unresponsive script

I have a website that is listing a category of products. Using jQuery, I am looking at each product's title link and filtering out anything with the words "sale", "clearance", or "new". Then, based ...
0
votes
2answers
73 views

JavaScript Regex find first not equal to

I have, what I thought was, a simple regex to get anything not (letter), (number) or (%) str.indexOf(/[^a-zA-Z0-9%]/); However, I'm ALWAYS getting -1. Here's an example str: Check out this ...
4
votes
2answers
73 views

Is there an “AllIndexesOf” method?

Background: I'm working on an evaluator (I know there's solutions available, but I need some features that I need to implement myself). I need to find all occurrences of open brackets in the ...
0
votes
2answers
97 views

How to search for multiple sub-strings in a single query

I've come across a point from which I am unable to think further. Briefly, I have an ul with hundred of li, each li having tens of words as text; at the very top of the list I have put an input box ...
3
votes
2answers
83 views

What does this statement “ Object.prototype” do?

var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0; Can anyone tell me what is the above code doing?
2
votes
3answers
32 views

error on calling string:indexOf

The line var ndx = url.indexOf( parameter ); causes the code to return without displaying either of the following alerts. The alert showing the url is correct. function setFrameSrc() { var url = ...
0
votes
3answers
72 views

JS/jQuery Alert if text field contains string

I have a text field (id=#CAT_Custom_244677) that is populated using a JS date picker. If the user chooses a date that results in a field value that contains '2013', I want to show an alert. Can't get ...
-2
votes
4answers
33 views

Determine the /category/ in the URL with Javascript

I have a need to include (through Javascript) different content depending on the major category captured from the url. The website is laid out like so: ...
0
votes
3answers
68 views

extracting 2 words from string at the same time in java

"[17235_A, 17235_B, -1.0, 0.06838527, 1.0]" "[17235_C, 17235_D, -1.0, 0.06838527, 1.0]" "[17235_E, 17235_F, -1.0, 0.06838527, 1.0]" I have a bunch of string as above, I want to ...
0
votes
3answers
81 views

extracting a substring to use in simple date format

I am reading log files and need to extract the date and year from certain lines in order to then use simple date format and find out the average time in between 2 actions. An example of what a line ...
3
votes
2answers
122 views

adding new strings to a hashmap java

I am writing a program that reads log files and then counts the number of times that certain strings are displayed. I was trying to manually input the strings as keywords but since there are so many, ...
1
vote
2answers
70 views

Java IndexOf not finding right data

I have a java application that needs to parse HTML elements from an HTML page. My simple HTML test is setup as such: <!DOCTYPE html> <html> <head> <style type='text/css'> ...
0
votes
4answers
57 views

IndexOf a whole Array and alert names

I am trying to write the following javascript in a html file. Create an array containing the names of 10 sports teams. Then loop through the array using a "for loop". If a team name contains the ...
0
votes
3answers
46 views

Occurrences and Arrays positions

Lets say I have this arrays: likes = [4,6,42,72,7,4,42,56,6,24]; time = [1,2,3,4,5,6,7,8,9,10]; And when clicking in one of the bar charts I have, I'm forwarded to the current time, according to ...
0
votes
2answers
61 views

occurrences of strings on the same line

I have code that counts the number of occurrences of days of the week in a textfile. As of right now, it will only count the day of the week if it is the only string on that line. For example, if I ...
0
votes
2answers
44 views

Figuring out if pathname starts with u

$(function() { var s = $('#field_id5 div.field_uneditable').html(); if(s == "+Member") { var path = window.location.pathname; if( /^u\d+/.test(path) ){ ...
1
vote
5answers
70 views

how to use indexOf to determine if a certain set of characters in Javascript

let's say I have an array of 30 strings. I want to determine if the string contains let's say characters of "ea" and I will then alert the strings that contains ea. I want to use indexOf how can I ...
2
votes
0answers
79 views

using indexOf() to compose an array of unique values

I'm iterating through an XML. One of the child elements is GroupName, which is not unique in the XML string/file. Therefor, I'm trying to put the different (unique) occurrences of the innertext, if ...
0
votes
1answer
108 views

indexOf in IE8 throwing error but works in all other browsers

Hey all i have the following js code: for(var i = choicesOrder.indexOf(cat)+1; i<choicesOrder.length; i++) And its throwing the error: SCRIPT438: Object doesn't support property or method ...
0
votes
1answer
170 views

indexOf not working in IE 8/7

I am trying to run a jquery/ajax call that works in IE9, Chrome, FF, Opera However, it fails in IE8 and UE7 The code: $.ajax({url:plink, success: function(result) { ppriser = ...
1
vote
2answers
132 views

Multiply every other array element by 2

I have an array of 10 digits. I want to multiply by 2, each element of the array with an even index. The elements with an odd index I want to multiply by 1 (in reality, leave unchanged). Hence, ...
-2
votes
2answers
38 views

JavaScript - indexOf with all charcters, not just first

is it possible to get an index of all of the strings that occur in another string instead of just the first one? and if it is, how will i use the output?
0
votes
2answers
62 views

how to filter an array with index of condition in javascript

Having less background of any coding, am trying to acheive a filtered array from an existing array with indexof condition in javascript. My code: function CheckIfexists(element) { return ...
-1
votes
2answers
44 views

Searching a vector for an object with a specific variable using indexOf() in Java

I'm trying to find an object held in a vector that has a specific integer for one of the object's variables using indexOf(). I picture it in my head like this: vector.indexOf(Object.variable=x) but ...
1
vote
2answers
311 views

Find the index in an ArrayList that contains a string

I'm sorry if there is a duplicate of this question somewhere but I could not find it... By using Jsoup I parse HTML from a website to populate an ArrayList with what I needed to fetch from the ...
2
votes
3answers
118 views

Java: How to search for a char variable in a string?

I need to find the position of char values that are derived from the user's input. But the indexOf method does not seem to work when I don't provide exact characters to look for. But since the char ...

1 2 3 4 5 7