Re: Finding a pattern in a stream?

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance

From: Jay B. Harlow [MVP - Outlook] (Jay_Harlow_MVP_at_msn.com)
Date: 11/03/04


Date: Wed, 3 Nov 2004 09:11:57 -0600

Terry,
You would need to check each read to see if it contains the characters you
are looking for. Be careful, depending on how you defined the "Read" your
characters may be spread across two reads.

InStr allows you to find a fixed set of characters a "word".

RegEx allows you to find a pattern (a variable set of characters), the Like
operator is a simplified form of RegEx.

For example: The "^\d+$" RegEx pattern says to find the beginning of the
line/string "^" followed by one or more "+" digits "\d", followed by the end
of the line/string "$"

A tutorial & reference on using regular expressions:
http://www.regular-expressions.info/

The MSDN's documentation on regular expressions:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconRegularExpressionsLanguageElements.asp

Hope this helps
Jay

"Terry Olsen" <tolsen64@hotmail.com> wrote in message
news:%23t2yQ6awEHA.2540@TK2MSFTNGP09.phx.gbl...
> Just doing a quick read of the page it looks as though Regex functions
> similarly to the InStr() function. Is Regex actually faster and more
> efficient than using InStr?
>
> Also, how would I find my pattern if it is broken up into two "reads"?
> For example, I wait for a DataArrival event, read from the serial port and
> pass the data out the TCP port. Say the string i'm looking for is
> "+++ATH". So I read the serial port and receive "<other data>+++A" and
> then on the next read of the serial port I get "TH<more data>". Or maybe
> it could conceivably be broken up into 3 or more reads. Is this a
> situation where I just have to concatenate the current read with the
> previous read and then look for the pattern? Or is there a better way?
>
> Thanks for the help.
> Terry
>
> "Ken Tucker [MVP]" <vb2ae@bellsouth.net> wrote in message
> news:OS2b0jZwEHA.2540@TK2MSFTNGP09.phx.gbl...
>> Hi,
>>
>> Regular expression are the best way to find patterns.
>> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconCOMRegularExpressions.asp
>>
>> Ken
>> -----------------------------
>> "Terry Olsen" <tolsen64@hotmail.com> wrote in message
>> news:%239qzs1WwEHA.2192@TK2MSFTNGP14.phx.gbl...
>> Is there a good way to find a pattern of bytes/chars in a stream? I've
>> got
>> a serial port connected to a tcp port. I need to be able to catch a
>> unique
>> character string in the stream so that I can perform certain functions.
>> For
>> example, I have a telnet client connected to an Apple II through the
>> serial
>> port. The user at the telnet terminal is using the BBS running on the
>> Apple
>> II just like the good ole days of dialup BBS's. I need to be able to
>> catch
>> a "command string" sent out from the Apple II (like the "+++ATH") that
>> tells
>> my app to disconnect the telnet client (in lieu of the modem hanging up).
>> Is there a good way to do this?
>>
>>
>>
>
>



Relevant Pages

  • Re: Standard C Library regex performance issue
    ... except for the number of characters you have to type in. ... To specify more than one option, "or" them together with the | operator: ... By default, Python's regex engine only considers the letters A through Z, the ... The above implies that Pyhton's newline mode is *ON* by default. ...
    (comp.lang.c)
  • Re: Help with Regex (UserName, Email)
    ... I have a feeling you haven't tried regex till now, ... If Name = ALL recurring characters, excluding spacing, ... ShowMessage: Please re-enter the Name again. ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: matching ? in a string ending with digits
    ... for my $item (@arr) { ... what other characters will fail to match in a string ... regex to fail as mentioned. ...
    (comp.lang.perl.misc)
  • Re: Regex question
    ... I didn't know the range would be that much different from SQL ... The problem is that my regex only gets ... should write a regex pattern that matches _that_, ... remove all the characters from the string that aren't digits or '/' ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Usename regex
    ... which have alphanumberic characters and one underscore. ... From what I understand is I can use a regex to do this. ... Think of a string, preferably very long that contains only alphanumeric characters, but end in a # sign. ...
    (microsoft.public.dotnet.framework.aspnet)