hi there,
this doesn't make any sense to me. must be wrong or painfully obvious.
after slicing and dicing, i got 2 vars with the following values in vb.net:
strTag = "<#<span class=SpellE>vermittler_person_Name</span>>"
tmp = "<#<span class=SpellE>vermittler_person_Name</span>>"
comparing the vars gives a false:
strTag = tmp ' ==> false
comparing the values directly right there gives a true:
"<#<span class=SpellE>vermittler_person_Name</span>>" = "<#<span class=SpellE>vermittler_person_Name</span>>" ' ==> true
both are strings, i tried all kinds of stuff: string.compare, string.equals, also regex etc. etc. everything works perfect with all the other strings with simlilar structure, just not and only not with
"vermittler_person_Name"
in the middle... any ideas?