Hello,
I would like to pasre this string in a special manner:
dddd, dd' de 'MMMM' de 'yyyy
The result I get by using the split function
VB Code:
dim d() as string d = split("dddd, dd' de 'MMMM' de 'yyyy","'")
is this
dddd, dd
de
MMMM
de
yyyy
However what I want is this:
dddd, dd
' de '
MMMM
' de '
yyyy
Anybody have any ideas?




Reply With Quote