I'm using this function that helps my webdevelopers to find a piece of code in a webpage:
function findString (str) {
  var strFound;
  strFound=self.find(str);
  if (strFound && self.getSelection && !self.getSelection().anchorNode ){   
    strFound=self.find(str);
  }
  if (!strFound) {
    strFound=self.find(开发者_开发百科str,1,1)
    while (self.find(str,1,1)) continue
  }
}
The problem is that when I enter the following string for example:
array[1]
It can't find it! Which is strange because I tried this function and It can find any other string. So, how can I use this function to find a string containing square brackets (without using regular expressions if it's possible)?
Thank you,
Regards
I tried you script and there is a bug in it. If you replace the following
if (strFound && self.getSelection && !self.getSelection().anchorNode )  
by the following
if (strFound && self.getSelection && !self.getSelection().anchorNode )  {
it works.
In Firefox and Chrome, strFound is true when the searched string is array[1]. In IE 8, script doesn't work.
EDIT: code I've tested:
$(document).ready(function() {
    findString("array[1]");
});
function findString (str) {
    var strFound;
    strFound=self.find(str);
    if (strFound && self.getSelection && !self.getSelection().anchorNode )  {
        strFound=self.find(str);
    }
    if (!strFound) {
        strFound=self.find(str,1,1)
        while (self.find(str,1,1)) continue
    }
    alert(strFound);
 }
What object function find is called on? Is that a window? Is yes, that what exactly does the function find? According to documentation it is:
The find() method displays a find dialog box when invoked. This allows a user to search for a string in the page from which it was invoked.
Does that mean that HTML tokens are not processed and you're exactly looking for HTML token array[1]? Which browsers is the function supported in?
One way to implement server-side search is to read the whole file (assuming you know the location of the file) and do a simple regular expression using string function search
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论