Tagged Questions
The indexof tag has no wiki summary.
306
votes
9answers
293k views
JavaScript: string contains
How can I check if one string contains another substring in JavaScript?
Usually I would expect a String.contains() method, but there doesn't seem to be one.
Edit: thanks for all the answers :) ...
14
votes
1answer
428 views
Why is List<T>.IndexOf() a lot faster than List<T>.Contains()?
I have List which has 150K elements. Average time of work IndexOf() is 4 times lower than Contains(). I tried to use List of int. For List of strings IndexOf is a bit faster.
I found only one main ...
12
votes
8answers
5k views
Is there a version of JavaScript's String.indexOf() that allows for regular expressions?
In javascript, is there an equivalent of String.indexOf() that takes a regular expression instead of a string for the first first parameter while still allowing a second parameter ?
I need to do ...
8
votes
4answers
5k views
How to get the index of an element in an IEnumerable?
I wrote this:
public static class EnumerableExtensions
{
public static int IndexOf<T>(this IEnumerable<T> obj, T value)
{
return obj
.Select((a, i) => ...
6
votes
3answers
386 views
Why is this List<>.IndexOf code so much faster than the List[i] and manual compare?
I'm running AQTime on this piece of code, I found that .IndexOf takes 16% of the time vs close to 80% for the other piece... They appear to use the same IsEqual and other routines. Called 116,000 ...
5
votes
2answers
48 views
Javascript oddness with array of objects and indexOf
Not quite grasping what's going on here. Given the array (arr):
[
{
"first_name": "Dan",
"last_name": "Woodson",
"id": 1
},
{
"first_name": "Jen",
...
5
votes
2answers
448 views
TStringList.IndexOf: wildcard within indexof?
I want to retrieve the linenumber in a stringlist (loaded from a file).
Indexof seems to match exactly. Is there a way to retrieve the line with a wildcard-version of Indexof? something like ...
5
votes
8answers
649 views
IndexOf method returns 0 when it should had return -1 in C# / Java
A friend of mine came to me with this strange behavior which i can't explain, any insight view would be appreciated.
Im running VS 2005 (C# 2.0), the following code show the behavior
int rr = ...
5
votes
5answers
3k views
Remove domain information from login id in C#
I would like to remove the domain/computer information from a login id in C#. So, I would like to make either "Domain\me" or "Domain\me" just "me". I could always check for the existence of either, ...
4
votes
1answer
119 views
How do you do pattern matching with Chinese characters (encoded in UTF-8) in Java?
I need to check whether a Chinese province is contained within an address in Chinese.
I am able to read and write Chinese characters easily.
I tried to use the indexOf() method of String to check ...
3
votes
3answers
57 views
Trouble using indexOf on a complex array [closed]
Possible Duplicate:
indexOf method in an object array?
I have a javascript array which follows this format:
var arrayName = [
{id: "a", gender: "man", item: "stuff"},
{id: "b", gender: ...
3
votes
2answers
67 views
window.opener.location.indexOf () function issue
I am trying to close child window if host name are same of parent and child but its
<script type="text/javascript">
$(document).ready(function () {
if (window.opener) {
...
3
votes
3answers
81 views
Why isn't method String.indexOf part of interface CharSequence?
I can't see any drawbacks in making String.indexOf part of the interface CharSequence. The benefit would be that other classes like StringBuffer or StringBuilder would need to implement the indexOf ...
3
votes
2answers
100 views
why is string IndexOf() acting case-INsensitive?
I'm really stumped by this one. I'm learning LINQ and used Microsoft Visual C# Express Edition to connect to a SQL Server database containing information about my books. I created the LINQ to SQL ...
3
votes
2answers
56 views
IndexOf bug when string contains 'AA'
I've run into a strange problem. I have a string with a value containing 'AA'.
I'm trying to find IndexOf the first accouring A. When I ask if the string Contains("A") it returns true. When using ...
3
votes
2answers
173 views
indexOf not working when parsing JSON results from Twitter
I'm using jQuery to parse a JSON result from Twitter.
I'm then performing a check against the returned results to see if they contain a double quotation mark.
$.getJSON(url + query, function(json) ...
3
votes
1answer
308 views
strange string.IndexOf behavour
I wrote the following snippet to get rid of excessive spaces in slabs of text
int index = text.IndexOf(" ");
while (index > 0)
{
text = text.Replace(" ", " ");
index = text.IndexOf(" ...
3
votes
3answers
792 views
Finding position of an element in a two-dimensional array?
Well simple question here (maybe not a simple answer?)
Say I have a two dimensional array
[0] [1] [2]
[3] [4] [5]
[6] [7] [8]
Now suppose I want to get the position of the number 6
I know with a ...
3
votes
4answers
8k views
How to use IndexOf() method of List<object>
All the examples I see of using the IndexOf() method in List are of basic string types. What I want to know is how to return the index of a list type that is an object, based on one of the object ...
3
votes
9answers
2k views
IndexOf too slow on list. Faster solution?
I have generic list which must be a preserved order so I can retrieve the index of an object in the list. The problem is IndexOf is way too slow. If I comment the IndexOf out, the code runs fast as ...
2
votes
4answers
47 views
Why does IndexOf return -1?
I am learning Javascript and don't understand why the indexOf below returns -1:
var string = "The quick brown fox jumps over the lazy dog";
console.log (string.indexOf("good"));
2
votes
1answer
21 views
Best way to get all character indexes for a given phrase located in text
What is the best way to get all character positions of a search phrase for a given string of text?
For example, say we have "the red cat is watching the red car stopped at the red stop sign"
INPUT: ...
2
votes
2answers
121 views
Check if a string is equal or substring of another
I am trying to check if one string is the same as another or maybe if it's a part of it with the code below:
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.Scanner;
...
2
votes
3answers
108 views
Need help splitting a string into two separate integers for processing
I am working on some data structures java HW and am a little stuck on how to split this string into two integers.. basically the user will enter a string like '1200:10', I used indexOf to check if ...
2
votes
5answers
364 views
Searching an String array for a sub-string?
I am trying to write a little method in java, but I cannot figure it out. What I want to be able to do is enter a string, and then the value of an int variable is set to the index of this in the ...
2
votes
3answers
835 views
Java indexOf method for multiple matches
I had a question about the indexOf method. I want to find multiple cases of "X" in a string.
Suppose my string is "x is x is x is x", I want to find x in all of its index positions.
But how do you do ...
2
votes
2answers
403 views
Generic TList<> in Delphi 2009 crash on IndexOf
I've seen many mentions of bugs in Delphi 2009 generics, but never expected something so basic to fail in Update 3, no less. Calling IndexOf on a generic TList or TObjectList causes an access ...
2
votes
3answers
674 views
Why is indexOf not working in Internet Explorer?
This function executes during the forms onSubmit, and works fine in Firefox and Chrome, but not in IE. I suspect it's indexOf, but I cannot seem to find a way to get it to work.
function ...
2
votes
4answers
973 views
How to find all occurrences of one string in another in JavaScript?
I'm trying to find the positions of all occurrences of a string in another string, case-insensitive.
For example, given the string:
I learned to play the Ukulele in Lebanon.
and the search string ...
2
votes
1answer
577 views
Javascript, string: test string for presence of sub-string that includes an asterisk (*)
I'm doing a pretty basic string matching test as follows:
if(msList.indexOf(textChoice) != -1)
This works well except that occasionally the sub-string I'm looking for (textChoice) ends with an ...
2
votes
2answers
429 views
jQuery Ajax How Do I Pass responseText as variable to indexOf?
I am trying to append a p element from the responseText of an Ajax request.
Before appending, I would like to see if the responseText already exists in the parent div element text, and not add it ...
2
votes
7answers
1k views
best way to find end of body tag in html
I'm writing a program to add some code to html files
I was going to use a series of indexof and loops to find what is essentially ""X
(where X is the spot im looking for)
It occurred to me that ...
2
votes
7answers
669 views
.NET string IndexOf unexpected result
A string variable str contains the following somewhere inside it: se\">
I'm trying to find the beginning of it using:
str.IndexOf("se\\\">")
which returns -1
Why isn't it finding the ...
1
vote
1answer
32 views
Search an array for a string and return the index in AS3
I want to search an array to see if it contains a specific string, and then get the index of the result.
For example, if I had:
array[0] = "dogs";
array[1] = "cats";
array[2] = "oranges";
I want ...
1
vote
4answers
56 views
JavaScript: getting part of string using substring
I have a variable in JavaScript:
var text = "i HATE you[i LOVE you]"
The code below originated from VB. I've checked it against W3Schools but I cannot see why it won't work.
var test = ...
1
vote
3answers
59 views
Multidimensional arraylist indexOf?
I'm having an issue with finding some data I have put into my multidimensional arraylist. I basically have an arraylist full of arraylists...
ArrayList<ArrayList<Integer>> array = new ...
1
vote
3answers
111 views
What's wrong with System.nanoTime?
I have a very long string with the pattern </value> at the very end, I am trying to test the performance of some function calls, so I made the following test to try to find out the answer... but ...
1
vote
1answer
218 views
C# For Loop, While Loop, LastIndexOf, IndexOf, Why the last 2 are faster?
I have done some testing in C# on For Loop, While Loop for an ArrayList to do comparison search, it seems to be having quadratic time consumption. However, I use LastIndexOf or IndexOf to search ...
1
vote
2answers
65 views
Why do I keep getting String out of Range?
return nameString.substring(nameString.indexOf(" ", 0), nameString.lastIndexOf(" ", 0));
Why is it keep returning an error? I just want to return the string from the first occurring space character, ...
1
vote
2answers
72 views
Is it possible to use .htaccess to make custom Index Of pages? If so how?
You know how when you go to a url on a server and the directory doesn't have an index.* file or a default.* file it shows you a list of the directorie's contents? I was wondering if there is any way ...
1
vote
1answer
100 views
Referring URL Query String Parameters w/ Javascript
I have a referring URL with a bunch of query string parameters. Here's my code so far:
var refURL=document.referrer;
var stock=refURL.substring(refURL.indexOf('?')+7, refURL.length);
This worked ...
1
vote
7answers
86 views
JavaScript indexOf() - how to get specific index
Let's say I have a URL:
http://something.com/somethingheretoo
and I want to get what's after the 3rd instance of '/'?
something like the equivalent of indexOf() which lets me input which instance of ...
1
vote
6answers
83 views
Remove colon from part of text via jQuery?
I had a similar question posted previously but this is a little bit different. I am looking to remove the colon from the below price code utilizing jQuery.
<font class="pricecolor ...
1
vote
2answers
72 views
indexof a string from a list in another list
i have the following code:
foreach (var str in usedCSS)
{
if (CSS.Contains(str))
Response.Write(str);
else
Response.Write("Could not find: " + x + ...
1
vote
4answers
167 views
C# - Linq - get Index on - Help
could someone help me with the linq statement,
this is what i have so far
public class Categories : ObservableCollection<Category>
{
public Categories() { }
public int ...
1
vote
5answers
492 views
c# substring indexof
i have a string which looks like this -
FirstName||Sam
LastName||Jones
Address||123 Main ST
... (100 more different values)
I want to find only Sam and Jones from the entire string.
so string ...
1
vote
1answer
924 views
MySQL String Last Index Of
I am able to use LOCATE to get the index of a character such as a . in www.google.com. Thus I can use substring to strip out everything before the first ..
Is there a way I can look for the last /?
...
1
vote
3answers
445 views
Removing everything after a certain char (IndexOfAny and Remove)
I have the following string array (quantityInForPriceBandPopUp[3]) data:
10 - 24
25 - 99
100 - 249
5000+
In C#, if I put this array through this:
quantityInForPriceBandPopUp[i] = ...
1
vote
3answers
328 views
Can I pass in one function for TObjectList.IndexOf, and another function for TObjectList.Sort?
Summarization:
TList.IndexOf (TList defined in the unit Classes.pas) iterates linearly through the contained items, and compares the reference. TList.IndexOf (TList defined in the unit ...
1
vote
3answers
271 views
Form to find value's position in a javascript array
I am trying to create a form that takes only a single letter and finds its position in an array (which is essentially the alphabet).
I wrote some this simple code:
var alphabet = ...