score:3

Accepted answer

you'll need to do a select to transform the results from xelements to strings.

dim chaptertitles = details.<vector>.<item>.skip(1).take(4).select(function(item) item.value)

or

dim chaptertitles = from item in details.<vector>.<item>.skip(1).take(4) _
                    select item.value

Related Query