The MASM Forum

General => The Campus => Topic started by: asmcoder on July 04, 2013, 01:29:28 PM

Title: any regular expression lib for masm?
Post by: asmcoder on July 04, 2013, 01:29:28 PM
hi all,
i searched the internet and can not find regular expression lib for masm :(
can someone help me?
thanks.
Title: Re: any regular expression lib for masm?
Post by: TouEnMasm on July 04, 2013, 02:02:47 PM

What did you want to do ????????????????????

Create a lib ?

; #########################################################################

include sdk32.inc

;samples of EXTERNDEF
; EXTERNDEF Copier :PROTO  :DWORD,:DWORD
; EXTERNDEF EtatMemoirePile :MEMORY_BASIC_INFORMATION
; EXTERNDEF PoriginePile:DWORD

.data

.code

; #########################################################################
;---------- proc here


; #########################################################################

end ;<<<<
Title: Re: any regular expression lib for masm?
Post by: qWord on July 04, 2013, 06:35:40 PM
Quote from: asmcoder on July 04, 2013, 01:29:28 PMi searched the internet and can not find regular expression lib for masm :(
you can use any C library as long as the compiled binaries are compatible with Microsoft's tool chain.
http://www.masmforum.com/board/index.php?topic=15846.0
Title: Re: any regular expression lib for masm?
Post by: Biterider on July 04, 2013, 06:37:14 PM
Hi
Here is an older translation to MASM from the PCRE project http://www.pcre.org (http://www.pcre.org). The OA32 package contain them too as well as an object to perform all operations of the library.

Biterider
Title: Re: any regular expression lib for masm?
Post by: TouEnMasm on July 04, 2013, 11:08:40 PM
seems there is further libraries in c++ who can be useful.
Make a choice and adapt it to masm .This need translation of headers and/or creation of a c++ lib with functions calling class functions,like regex::truc.

http://www.tropicsoft.com/Components/RegularExpression/Download.htm (http://www.tropicsoft.com/Components/RegularExpression/Download.htm)
Title: Re: any regular expression lib for masm?
Post by: asmcoder on July 06, 2013, 05:32:41 PM
Quote from: qWord on July 04, 2013, 06:35:40 PM
Quote from: asmcoder on July 04, 2013, 01:29:28 PMi searched the internet and can not find regular expression lib for masm :(
you can use any C library as long as the compiled binaries are compatible with Microsoft's tool chain.
http://www.masmforum.com/board/index.php?topic=15846.0

Thanks. i will study it.