A
al jones
I have the following line of code in a procedure (Function
SearchDesigner(ByVal stringreader As String) As String)
If LCase(stringreader) Like "*" & LCase(arDesigner(i, 0)) & "*" Then
return(designer(i,1))
I'm reading a line of text from a font file / extracting copyright
information from a font file (dependng on the type of font) then pass this
line of text to this function. I parse my way though an array which looke
like
designer(i,0) (designer(i,1)
The first two seem to operate properly but the third seems to return true
in any case where the string 'character' is found as if the © symbol were
being ignored. The string 'Contains 5 character' matches '© Characte'
which is giving me many false positives, if this make sense to anyone,
could you offer a suggestion as to why it's occurring and how to make it
behave as I'd like.
//al
SearchDesigner(ByVal stringreader As String) As String)
If LCase(stringreader) Like "*" & LCase(arDesigner(i, 0)) & "*" Then
return(designer(i,1))
I'm reading a line of text from a font file / extracting copyright
information from a font file (dependng on the type of font) then pass this
line of text to this function. I parse my way though an array which looke
like
designer(i,0) (designer(i,1)
(c) Character Character
by Character Character
© Characte Character
The first two seem to operate properly but the third seems to return true
in any case where the string 'character' is found as if the © symbol were
being ignored. The string 'Contains 5 character' matches '© Characte'
which is giving me many false positives, if this make sense to anyone,
could you offer a suggestion as to why it's occurring and how to make it
behave as I'd like.
//al