There are several options, here are some:
1. Store a string with a comma separating the two values: dim var as string = "Apple,http://www.apple.com" , then use:
dim str() as string = regex.split(",", var)
the first string will be in str(0) and the second in str(1)
2. Define a type (in globals) -
Type dblstring(name As String,link As String)
dim var as dblstring
and use var.name = "Apple"
var.link = "http://www.apple.com"
3. Use my Keyvalues class which is a modification of KeyValueStore. https://www.b4x.com/android/forum/threads/keyvalues-extended-keyvaluestore.32553/