Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default string search

    Is there a way to search a string within a string. For example, I
    want to search for "world" in "Hello world" knowing that "world" can
    be anywhere in the string. How do I do that? Thanks.
    powerranger Guest

  2. Similar Questions and Discussions

    1. search a string for value
      hi, i have a field that has descriptions for a product.. i want to do a search on this field.. but i'm getting bad results because some users...
    2. String Search with SQL
      I was trying to write an SQL statment that will do a string search in an Access 2000 database. But I can't seem to figure out how to do it so that...
    3. how to optimize a string search
      I know this is more of an algorithm question but please bear with me. In my program I am checking wether a emailid exists in a list I have in...
    4. Search string in a file
      On Wed, 15 Oct 2003, Panther wrote: # I must search string in a file ?? # How I must open file in read and search string ?? # What is syntax ??...
    5. String question: Returning portion of string with words surrounding highlighted search term?
      I'm looking to find or create an ASP script that will take a string, examine it for a search term, and if it finds the search term in the string,...
  3. #2

    Default Re: string search

    Use the "IndexOf" method of the string object.
    Here's more info:
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemstringclassindexoftopic.asp[/url]

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "powerranger" <tangolp@yahoo.com> wrote in message
    news:13bc95e0.0306301259.36cb8539@posting.google.c om...
    > Is there a way to search a string within a string. For example, I
    > want to search for "world" in "Hello world" knowing that "world" can
    > be anywhere in the string. How do I do that? Thanks.

    Steve C. Orr, MCSD Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139