The MASM Forum

General => The Campus => Topic started by: sepult on July 06, 2023, 02:28:28 PM

Title: Parsing text file
Post by: sepult on July 06, 2023, 02:28:28 PM
Hello everyone. Is there's a source code or snippets to parse text file? I have to find some text by patterns in txt. Thanks
Title: Re: Parsing text file
Post by: zedd151 on July 06, 2023, 06:02:42 PM
Hi. Could you post an example of what you are trying to achieve? Pseudocode is fine, just so we can get the gist of what exactly it is that you are after.

Are you trying to search for a string? "????X?????Y????Z" where the X Y and Z are always in the same positions, and the ? Are unknown...  Something like that?
Also, 32 or 64 bit?

Do a search using the forum search function. Search "text parser" ... maybe you will find something that will help you. Search must be done from forum home page to search all boards within the forum btw.

Maybe something like this  https://masm32.com/board/index.php?topic=10353.msg113406#msg113406 (https://masm32.com/board/index.php?topic=10353.msg113406#msg113406)  ???
Are you looking for words, sequence of characters, single characters, or ????
Or trying to find a string within a string?
Do you have any code started?
Title: Re: Parsing text file
Post by: jj2007 on July 06, 2023, 07:09:39 PM
Check \Masm32\examples\unicode_generic\string_examples\find$\find$.asm
Title: Re: Parsing text file
Post by: zedd151 on July 06, 2023, 07:16:35 PM
Quote from: sepult on July 06, 2023, 02:28:28 PM
I have to find some text by patterns in txt.
What is the format of the patterns that you mentioned? Can you give an example?
ascii or unicode?
Title: Re: Parsing text file
Post by: Vortex on July 07, 2023, 03:40:41 AM
Hi sepult,

You can check the manual of masm32.lib :

QuoteSearch Functions

InString
BinSearch
Boyer Moore Algorithms
WordCount
partial

The help file :

\masm32\help\masmlib.chm
Title: Re: Parsing text file
Post by: zedd151 on September 23, 2023, 04:16:37 AM
More in depth discussion found here...   Parsing Text file in Assembly Language (https://masm32.com/board/index.php?topic=11295.0),  a rather 'advanced' topic by NoCforMe.
Originally that topic was part of the replies from this thread, it is well beyond 'newbie' material, also the OP, "sepult",  has not replied to our queries asking exactly what they needed, and apparently abandoned the thread.