Hi
I need a speedy dll that parses a string and returns a substring.
The dll sould contain a function in order to be called by one program, like this:
Parsestring(String, Ldelimiter, Rdelimiter, Number, Action)
legend:
Parsestring is the function name, and returns the substring.
String is the input string to parse.
Ldelimiter is the left delimiter of the substring (is a string).
Rdelimiter is the right delimiter (is a string).
Number is the number of substrings if there are more than one substring contained by the same delimiters.
My bigest problem is that i've never made a dll before and i dont know it works. What kind of code i need to write? How to create the dll???
And then i need to know how to use the imformation on the dll. How should i cll the function in the dll on my program??
I need a speedy dll that parses a string and returns a substring.
The dll sould contain a function in order to be called by one program, like this:
Parsestring(String, Ldelimiter, Rdelimiter, Number, Action)
legend:
Parsestring is the function name, and returns the substring.
String is the input string to parse.
Ldelimiter is the left delimiter of the substring (is a string).
Rdelimiter is the right delimiter (is a string).
Number is the number of substrings if there are more than one substring contained by the same delimiters.
My bigest problem is that i've never made a dll before and i dont know it works. What kind of code i need to write? How to create the dll???
And then i need to know how to use the imformation on the dll. How should i cll the function in the dll on my program??