News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

any regular expression lib for masm?

Started by asmcoder, July 04, 2013, 01:29:28 PM

Previous topic - Next topic

asmcoder

hi all,
i searched the internet and can not find regular expression lib for masm :(
can someone help me?
thanks.

TouEnMasm


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 ;<<<<
Fa is a musical note to play with CL

qWord

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
MREAL macros - when you need floating point arithmetic while assembling!

Biterider

Hi
Here is an older translation to MASM from the PCRE project http://www.pcre.org. The OA32 package contain them too as well as an object to perform all operations of the library.

Biterider

TouEnMasm

#4
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
Fa is a musical note to play with CL

asmcoder

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.