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
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.
|
|
You can use split and get the length of the array:
The |
||||
|
|
|||
|
string.indexOf('c') |
|||||||
|
|
SPLIT can be a good option as suggested by @astander You can use Regular expression as well
Above code will help you to know the occurence of any character of substring or other pattern. Best way
|
|||||||||
|