Ask a Question related to ASP, Design and Development.
-
Ken Fine #1
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, return
the highlighted search term along with the words that surround it. In other
words, I want the search term highlighted and shown in an excerpt of the
context in which it appears.
Any suggestions or pointers? This behavior is most often seen as part of a
search engine. In my case, I want to use it as part of a content "scanner"
that utilizes a screen scraping component.
Ken Fine Guest
-
Update portion of a string column
Hi, I have a column that has a string field, and I only wanna update the 3rd character in the string. e.g. change 'StRing' to 'String'. Is this... -
string question: how to append x zeros to get fixed lenght string?
"Bob Barrows" <reb_01501@yahoo.com> wrote in message news:uuhVv4mcDHA.656@tk2msftngp13.phx.gbl... newstring = Right("0000000" & i,8) ;-p -
Replace words into a string with a space before or after
Hello. I've got a string with some words inside, and I'm trying to replace 'select' to 'choose'. ---------------------------------------------... -
substitute three random words in a string
Hudson wrote: (someone else wrote:) Quick and efficient with no need for an "e" switch. -
How to pick out words from a non-delimited string?
Hi, Since Perl excels at string parsing, I thought this would be the right group to ask my question. If not, I apologize for the confusion. I... -
Ken Fine #2
Re: String question: Returning portion of string with words surrounding highlighted search term?
The hard part of this problem isn't highlighting the search term, which has
been done a million times before, but rather pulling out, say, 300
characters that precede the search term and 300 characters that follow it,
so that I can show the context that a term appeared in.
"Mike" <sorry@sorry.com> wrote in message
news:bhe0u8$s7k$1@geraldo.cc.utexas.edu...a> "Ken Fine" <kenfine@u.washington.edu> wrote in message
> news:bhdodq$23m8$1@nntp6.u.washington.edu...> examine> > I'm looking to find or create an ASP script that will take a string,> return> > it for a search term, and if it finds the search term in the string,> other> > the highlighted search term along with the words that surround it. In> > words, I want the search term highlighted and shown in an excerpt of the
> > context in which it appears.
> >
> > Any suggestions or pointers? This behavior is most often seen as part of"scanner"> > search engine. In my case, I want to use it as part of a content#FF0000"">">> > that utilizes a screen scraping component.
> Sounds like a job for replace...
>
> replace(string, search-string, "<span style=""background-color:you> & search-string & "</span>")
>
> I haven't tried it, but it seems logical. The CSS might be flaky above,> might want to verify that background-color is a valid property. :)
>
> --
> Mike
>
>
Ken Fine Guest
-
Alan #3
Re: String question: Returning portion of string with words surrounding highlighted search term?
This will get you started:
Dim Pos
Dim Extract
Const BufferLen = 300
Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
If (Pos<>0) Then
' Search term found.
Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
Len(SearchTerm)))
End If
It'll need some tweaking and I haven't tested it. Make sure you don't read
past either end of SourceString. I'd be a bit worried about the efficiency
of this if you're doing it multiple times on a page - you'll have to
optimise it by storing the Pos of the last hit and starting from that
position for your next iteration. Perhpas something like this (untested):
Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
Do While Pos <> 0
' Get the extract.
Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
Len(SearchTerm)))
' Next Pos.
Pos = InStr (Pos, SourceString, SearchTerm, vbTextCompare)
Loop
Try that.
Alan
"Ken Fine" <kenfine@u.washington.edu> wrote in message
news:bhe34e$1rea$1@nntp6.u.washington.edu...has> The hard part of this problem isn't highlighting the search term, whichthe> been done a million times before, but rather pulling out, say, 300
> characters that precede the search term and 300 characters that follow it,
> so that I can show the context that a term appeared in.
>
> "Mike" <sorry@sorry.com> wrote in message
> news:bhe0u8$s7k$1@geraldo.cc.utexas.edu...> > "Ken Fine" <kenfine@u.washington.edu> wrote in message
> > news:bhdodq$23m8$1@nntp6.u.washington.edu...> > examine> > > I'm looking to find or create an ASP script that will take a string,> > return> > > it for a search term, and if it finds the search term in the string,> > other> > > the highlighted search term along with the words that surround it. In> > > words, I want the search term highlighted and shown in an excerpt ofof> > > context in which it appears.
> > >
> > > Any suggestions or pointers? This behavior is most often seen as part> a> "scanner"> > > search engine. In my case, I want to use it as part of a content> #FF0000"">"> >> > > that utilizes a screen scraping component.
> > Sounds like a job for replace...
> >
> > replace(string, search-string, "<span style=""background-color:> you> > & search-string & "</span>")
> >
> > I haven't tried it, but it seems logical. The CSS might be flaky above,>> > might want to verify that background-color is a valid property. :)
> >
> > --
> > Mike
> >
> >
>
Alan Guest
-
Alan #4
Re: Almost there... Re: String question: Returning portion of string with words surrounding highlighted search term?
Yep sorry about that. Try this line for the second search (notice the 'Pos +
1'):
Pos = InStr (Pos + 1, SourceString, SearchTerm, vbTextCompare)
See how you go.
Alan
"Ken Fine" <kenfine@u.washington.edu> wrote in message
news:bheotu$2ssa$1@nntp6.u.washington.edu..."highlight> Alan, thanks, this is great. Function #1 works just swell, with no mishaps
> at all. I combined it with a "clean out the HTML" function and aI> search term" function to make a genuinely useful scanner.
>
> The only part I don't have working is a mechanism by which it will loop
> through the remaining content. Function #2 appears to send the server into
> an infinite loop and I can't figure out why. It would be really great iffor> could list out all of the "hits" for a given page. Do you have any ideasread> what I should be looking at?
>
>
> "Alan" <SPAMMENOTalan.howard@inspire.net.nz> wrote in message
> news:enuiLSfYDHA.384@TK2MSFTNGP12.phx.gbl...> > This will get you started:
> >
> > Dim Pos
> > Dim Extract
> > Const BufferLen = 300
> >
> > Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
> >
> > If (Pos<>0) Then
> >
> > ' Search term found.
> > Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
> > Len(SearchTerm)))
> >
> > End If
> >
> > It'll need some tweaking and I haven't tested it. Make sure you don'tefficiency> > past either end of SourceString. I'd be a bit worried about the(untested):> > of this if you're doing it multiple times on a page - you'll have to
> > optimise it by storing the Pos of the last hit and starting from that
> > position for your next iteration. Perhpas something like thiswhich> >
> > Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
> > Do While Pos <> 0
> >
> > ' Get the extract.
> > Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
> > Len(SearchTerm)))
> > ' Next Pos.
> > Pos = InStr (Pos, SourceString, SearchTerm, vbTextCompare)
> >
> > Loop
> >
> > Try that.
> >
> > Alan
> >
> > "Ken Fine" <kenfine@u.washington.edu> wrote in message
> > news:bhe34e$1rea$1@nntp6.u.washington.edu...> > > The hard part of this problem isn't highlighting the search term,string,> it,> > has> > > been done a million times before, but rather pulling out, say, 300
> > > characters that precede the search term and 300 characters that follow> > > so that I can show the context that a term appeared in.
> > >
> > > "Mike" <sorry@sorry.com> wrote in message
> > > news:bhe0u8$s7k$1@geraldo.cc.utexas.edu...
> > > > "Ken Fine" <kenfine@u.washington.edu> wrote in message
> > > > news:bhdodq$23m8$1@nntp6.u.washington.edu...
> > > > > I'm looking to find or create an ASP script that will take astring,> > > > examine
> > > > > it for a search term, and if it finds the search term in theof> In> > > > return
> > > > > the highlighted search term along with the words that surround it.> > > > other
> > > > > words, I want the search term highlighted and shown in an excerpt> part> > the> > > > > context in which it appears.
> > > > >
> > > > > Any suggestions or pointers? This behavior is most often seen as> above,> > of> > > a
> > > > > search engine. In my case, I want to use it as part of a content
> > > "scanner"
> > > > > that utilizes a screen scraping component.
> > > >
> > > > Sounds like a job for replace...
> > > >
> > > > replace(string, search-string, "<span style=""background-color:
> > > #FF0000"">"
> > > > & search-string & "</span>")
> > > >
> > > > I haven't tried it, but it seems logical. The CSS might be flaky>> >> > > you
> > > > might want to verify that background-color is a valid property. :)
> > > >
> > > > --
> > > > Mike
> > > >
> > > >
> > >
> > >
> >
>
Alan Guest
-
Ken Fine #5
Re: Almost there... Re: String question: Returning portion of string with words surrounding highlighted search term?
Thanks again, Alan, that did the trick! This is great. The finished code
looks like this:
<%Dim Pos
Dim Extract
Const BufferLen = 300
Searchterm=TearSearchTerm
SourceString=strRetVal5
Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
Do While Pos <> 0
' Get the extract.
Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
Len(SearchTerm)))
Response.Write "<p><font face=arial size=2><b>Location of search term
"&"<font color=red>""&Searchterm&""</font> at <a
href="&TearURL&">"&TearURL&"</a>"&":</b> char #"& Pos & "</font><br>"
FinishString=StripHTML(Extract)
Response.Write "<b>Excerpt:</b><br><font face=arial size=2> ..."&
doHighlight(FinishString, Searchterm,"hi")&" ...</font>"
' Next Pos.
Pos = InStr (Pos + 1, SourceString, SearchTerm, vbTextCompare)
Loop
%>
Interested readers can sub out the response.write business, and sub in their
own "highlight search word" function that drives the "doHighlight" widget.
(If you want this function, it's available off of planet-source-code.com; I
wrote in an extra setting to the function -- "hi" -- that highlights search
terms with a yellow background.)
StripHTML is a function to remove HTML/code from a string, you can find any
of a number of free functions that will do this for you.
A big gold star to Alan for his timely help on a not-trivial problem.
-KF
"Alan" <SPAMMENOTalan.howard@inspire.net.nz> wrote in message
news:uB5TslgYDHA.3444@tk2msftngp13.phx.gbl...+> Yep sorry about that. Try this line for the second search (notice the 'Posmishaps> 1'):
>
> Pos = InStr (Pos + 1, SourceString, SearchTerm, vbTextCompare)
>
> See how you go.
>
> Alan
>
> "Ken Fine" <kenfine@u.washington.edu> wrote in message
> news:bheotu$2ssa$1@nntp6.u.washington.edu...> > Alan, thanks, this is great. Function #1 works just swell, with nointo> "highlight> > at all. I combined it with a "clean out the HTML" function and a> > search term" function to make a genuinely useful scanner.
> >
> > The only part I don't have working is a mechanism by which it will loop
> > through the remaining content. Function #2 appears to send the serverif> > an infinite loop and I can't figure out why. It would be really greatfollow> I> for> > could list out all of the "hits" for a given page. Do you have any ideas> read> > what I should be looking at?
> >
> >
> > "Alan" <SPAMMENOTalan.howard@inspire.net.nz> wrote in message
> > news:enuiLSfYDHA.384@TK2MSFTNGP12.phx.gbl...> > > This will get you started:
> > >
> > > Dim Pos
> > > Dim Extract
> > > Const BufferLen = 300
> > >
> > > Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
> > >
> > > If (Pos<>0) Then
> > >
> > > ' Search term found.
> > > Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
> > > Len(SearchTerm)))
> > >
> > > End If
> > >
> > > It'll need some tweaking and I haven't tested it. Make sure you don't> efficiency> > > past either end of SourceString. I'd be a bit worried about the> (untested):> > > of this if you're doing it multiple times on a page - you'll have to
> > > optimise it by storing the Pos of the last hit and starting from that
> > > position for your next iteration. Perhpas something like this> which> > >
> > > Pos = InStr (1, SourceString, SearchTerm, vbTextCompare)
> > > Do While Pos <> 0
> > >
> > > ' Get the extract.
> > > Extract = Mid(SourceString, Pos - BufferLen, ((2*BufferLen) +
> > > Len(SearchTerm)))
> > > ' Next Pos.
> > > Pos = InStr (Pos, SourceString, SearchTerm, vbTextCompare)
> > >
> > > Loop
> > >
> > > Try that.
> > >
> > > Alan
> > >
> > > "Ken Fine" <kenfine@u.washington.edu> wrote in message
> > > news:bhe34e$1rea$1@nntp6.u.washington.edu...
> > > > The hard part of this problem isn't highlighting the search term,> > > has
> > > > been done a million times before, but rather pulling out, say, 300
> > > > characters that precede the search term and 300 characters thatit.> string,> > it,> > > > so that I can show the context that a term appeared in.
> > > >
> > > > "Mike" <sorry@sorry.com> wrote in message
> > > > news:bhe0u8$s7k$1@geraldo.cc.utexas.edu...
> > > > > "Ken Fine" <kenfine@u.washington.edu> wrote in message
> > > > > news:bhdodq$23m8$1@nntp6.u.washington.edu...
> > > > > > 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> > > > > return
> > > > > > the highlighted search term along with the words that surroundexcerpt> > In> > > > > other
> > > > > > words, I want the search term highlighted and shown in an> of>> > part> > > the
> > > > > > context in which it appears.
> > > > > >
> > > > > > Any suggestions or pointers? This behavior is most often seen as> > above,> > > of
> > > > a
> > > > > > search engine. In my case, I want to use it as part of a content
> > > > "scanner"
> > > > > > that utilizes a screen scraping component.
> > > > >
> > > > > Sounds like a job for replace...
> > > > >
> > > > > replace(string, search-string, "<span style=""background-color:
> > > > #FF0000"">"
> > > > > & search-string & "</span>")
> > > > >
> > > > > I haven't tried it, but it seems logical. The CSS might be flaky> >> > > > you
> > > > > might want to verify that background-color is a valid property. :)
> > > > >
> > > > > --
> > > > > Mike
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
>
Ken Fine Guest



Reply With Quote

