Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could someone please tell me how to find the occurence of a character in a string? I have to check the number of lines getting displayed (using the br tag) in a dynamically created div. Thanks in advance, Ashriya

share|improve this question
I have to display some cities in the div. I bind these from the database, so I use the br tag to display them one by one. How can I check the no of cities getting displayed dynamically? – Ashriya Oct 13 '10 at 5:35
It's probably easier if you render the cities as a list of <li> if at all possible and then simply count the number of <li>s. – oberhamsi Oct 13 '10 at 8:10

4 Answers

up vote 1 down vote accepted

You can use split and get the length of the array:

var div = document.getElementById('div');
alert(div.innerHTML.split(/\<br\s*\/\>/).length;

The /\<br\s*\/*\>/ is a Regular Expression that looks for all <br/>, <br />

share|improve this answer
Mic, thanks for ur reply. Will try this one. – Ashriya Oct 13 '10 at 9:44
Hey Mic, since the /* is used for comments, its not working..:( – Ashriya Oct 13 '10 at 10:00
Remove it and use only /\<br\s*\/\>/ – Mic Oct 13 '10 at 16:00

You could try

JavaScript indexOf() Method

or maybe use split and array length.

share|improve this answer
I tried this indexOf() but it doesn't seem to work..:( – Ashriya Oct 13 '10 at 5:33
I have to display some cities in the div. I bind these from the database, so I use the br tag to display them one by one. How can I check the no of cities getting displayed dynamically? – Ashriya Oct 13 '10 at 5:39

string.indexOf('c')

share|improve this answer
I tried this indexOf() but it doesn't seem to work..:( – Ashriya Oct 13 '10 at 5:33
I have to display some cities in the div. I bind these from the database, so I use the br tag to display them one by one. How can I check the no of cities getting displayed dynamically? – Ashriya Oct 13 '10 at 5:40
This is really a comment, not an answer to the question. Please use "add comment" to leave feedback for the author. – oleksii Aug 19 '12 at 11:19

SPLIT can be a good option as suggested by @astander

You can use Regular expression as well

import java.util.regex.Matcher; 
import java.util.regex.Pattern; 

public class javaRE { 
    public static void main(String[] args) { 

    String message = "Your contents";

    Pattern p = Pattern.compile("your character");
    Matcher matcher = p.matcher(message); 

    int count=0;
    while(matcher.find()&& matcher.group() != null){
        count++;
    }
    } 
}

Above code will help you to know the occurence of any character of substring or other pattern.

Best way

string.lastIndexOf('a');
share|improve this answer
2  
java, javascript - same thing, who cares :P – Anurag Oct 13 '10 at 5:46
I tried ur method but I don't understand what the "Pattern" and "Matcher" do. Could u help me with that please? Thanks. – Ashriya Oct 13 '10 at 6:52
Pattern is nothing but what you want to search. Above code was in java. I had wrote the whole program. Now you can run & test it without any change. I'll suggest if you try the last way i said ie lastindexof() – articlestack Oct 13 '10 at 14:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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