1
vote
4answers
185 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 on …
0
votes
2answers
172 views
DataTable Rows.IndexOf()
I am trying to find a row and then delete that row from a datatable. I keep getting nIndex = -1. Anyone have suggestions?
protected void cbxSelected_CheckedChanged(object sender, …
2
votes
3answers
315 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
.Selec …
2
votes
6answers
286 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 occu …
1
vote
8answers
338 views
IndexOf too slow on list. Faster solution?
Hello,
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 ou …
1
vote
6answers
291 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 i …
0
votes
1answer
244 views
IndexOf Feature in Pl/SQL
I'd like to look up the location of a specific character in a varchar variable.
0
votes
3answers
179 views
What has higher performance used within large loops: .indexOf(str) or .match(regex)?
I have this array.prototype on my page and it seems to be sucking up a lot of processing time:
Array.prototype.findInArray = function(searchStr) {
var returnArray = …
0
votes
3answers
439 views
Actionscript indexOf problem
When I create a TextField in AS3 with multiline set to true and equate the text to say:
"Hola \r hola"
I am unable to retrieve the index position of \r using indexOf function, it …
1
vote
1answer
166 views
Question about overzelaous implementation of IndexOf
I have a priority queue implementation in C# that I want to add a .IndexOf method to.
However, since the priority queue doesn't really concern itself with the order of the values …
6
votes
8answers
1k 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 …
2
votes
4answers
668 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 e …
