Ask a Question related to ASP, Design and Development.
-
Bite My Bubbles #1
find in string
How can i count the number of times a string appears within another string.
Thanks a
lot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!
!!
Bite My Bubbles Guest
-
can't find string with quotes
I'm trying to search for a string that contains quotes and my find statement keeps returning 0 even though I know the string exists in my... -
How to find second occurence of a string?
Hi i am using the find function which will search the first occurence of a string. but how we can find the second or third ...occurence of the... -
Find and cut string
Hi, I'm new to PHP, so please bear with me! =) Is there a nice little function to find a string between to html-tags? I.e. let's say I have a... -
[PHP] find string
Isn't there an in_array function you can use? If (in_array($action, array(a1,a2,a3,a4)) { // do something } else { // do something else } -
find string between files
Hi all, how can I search for a specific string inside a directory (between files) ? Thanks for your help -
dlbjr #2
Re: find in string
Check out Regular Expressions.
-dlbjr
invariable unerring alien
dlbjr Guest
-
Evertjan. #3
Re: find in string
Manohar Kamath [MVP] wrote on 09 aug 2003 in
microsoft.public.inetserver.asp.general:The case insensitive way, often used by me:> Dim arElem
> Dim myString
> Dim mySubString
>
> myString = "this contains the word how many times just one time"
> mySubString = "how many times"
> arElem = Split(myString, mySubString)
>
> Response.Write("Number of times: " & UBound(arElem))
MyNum = UBound(Split(ucase(myString), ucase(mySubString)))
Response.Write "Number of times: " & myNum
This also does not keep a large array in memory, (I hope).
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
Bite My Bubbles #4
Re: find in string
that;s a good one thanks
"Manohar Kamath [MVP]" <mkamath@TAKETHISOUTkamath.com> wrote in message
news:uCnZc0gXDHA.1280@tk2msftngp13.phx.gbl...lot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!> One way to do this is kinda a round about way. Use the Split function to
> split the string into an array, and count the number of array elements,
> minus one.
>
> Dim arElem
> Dim myString
> Dim mySubString
>
> myString = "this contains the word how many times just one time"
> mySubString = "how many times"
> arElem = Split(myString, mySubString)
>
> Response.Write("Number of times: " & UBound(arElem))
>
> You could also use the InStr function, and loop through the first ring to
> count number of times the string appears.
>
> --
> Manohar Kamath
> Editor, .netBooks
> [url]www.dotnetbooks.com[/url]
>
>
> "Bite My Bubbles" <bmb@mybubbles.com> wrote in message
> news:eT6gNQgXDHA.1620@TK2MSFTNGP12.phx.gbl...> string.> > How can i count the number of times a string appears within another>> > Thanks a
> >>> > !!
> >
> >
>
Bite My Bubbles Guest
-
Bite My Bubbles #5
Re: find in string
that's a good one too!
"Evertjan." <exjxw.hannivoort@interxnl.net> wrote in message
news:Xns93D264429E3CFeejj99@194.109.133.29...> Manohar Kamath [MVP] wrote on 09 aug 2003 in
> microsoft.public.inetserver.asp.general:>> > Dim arElem
> > Dim myString
> > Dim mySubString
> >
> > myString = "this contains the word how many times just one time"
> > mySubString = "how many times"
> > arElem = Split(myString, mySubString)
> >
> > Response.Write("Number of times: " & UBound(arElem))
> The case insensitive way, often used by me:
>
> MyNum = UBound(Split(ucase(myString), ucase(mySubString)))
> Response.Write "Number of times: " & myNum
>
> This also does not keep a large array in memory, (I hope).
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)
Bite My Bubbles Guest



Reply With Quote

