
Getting a single line out of a Variant
Use the Instr function to find Br
dim p as integer
p = instr(test, chr$(13))
p will equal 6 in your case.
You can then use the Left$ and/or Mid$ functions
to take apart the string
Note: If you're looking for the second string, you have
to also find the second occurrence of chr$(13) using another Instr