vote up 0 vote down star

How to get Last Index Of "%" in a string in C#.NET ? I tried

string subString = content.Substring(0, startIndex);
int nextOpeningComment = subString.LastIndexOf("%", 0);

It is always giving me -1.

Here subString I'm getting is this:

<div id=\"xyz\">  \r\n    <img alt=\"\" src=\"App_Themes/Default/Images/abc.jpg\" />\r\n    <%--

Any help/suggestions appreciated.

flag

76% accept rate
1  
Do you have a complete example? (Specifically what are content and startIndex before the start of this code.) – Richard Aug 26 at 14:12
What are the values of content and startIndex in this supposed-failing case? – Marc Gravell Aug 26 at 14:17

4 Answers

vote up 9 vote down check

It's because the method searches the string backwards, towards the beginning. By specifying start position 0, you tell it to start at the first character. Unless the first character is "%" it will return -1, regardless of what the rest of the string contains. Use the LastIndexOf overload without the start index and you should get the expected result.

link|flag
content might have a % in it, but content.Substring(0, startIndex); might not :-) – ThePower Aug 26 at 14:17
Ofcourse I'm confident...it's really not working...is it like "%" is a special symbol and requires some other treatment ?? – Manish Aug 26 at 14:17
Manish: see my updated answer: I realized (I think) what your problem is... – Fredrik Mörk Aug 26 at 14:19
WOW !! worked like a charm..I thought it(0) is the start index from where it should start the search. Thanks Fredrik and thanks everyone...!!! – Manish Aug 26 at 14:23
vote up 8 vote down

You're looking for occurrences of % but you're starting at position 0 and searching backwards from there. There's no % character at position 0, and that's why the LastIndexOf call is returning -1.

You need to start your search at the end of the string:

string subString = content.Substring(0, startIndex);
int nextOpeningComment = subString.LastIndexOf("%");
link|flag
Great..it worked....thanks.... – Manish Aug 26 at 14:28
vote up 5 vote down

If there is no % in the string, then the return of -1 is expected and By Design. It indicates that the requested string is not present in the value "subString"

link|flag
Thanks...but I really know this thing...and there is % in the string... – Manish Aug 26 at 14:14
vote up 2 vote down

there is no symbols from the end of the string starting from 0 try

content.LastIndexOf("%");
link|flag
Great...it worked...thanks....it was bcoz of the 0 !! – Manish Aug 26 at 14:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.