Customer Portal

How to get first value from list of string

Comments 2

  • Avatar
    Ladislav Szabo
    0
    Comment actions Permalink

    Hi Sylvester,

    You can access an individual element of a list by using the name of the list name followed by the element's index in square brackets. List indices start at 0 and end at size-1: your_list[index]
    Thus, you are looking for the index 0 (e.g., urlList[0]).

    Regards,
    Ladislav.

  • Avatar
    Sylvester Noronha
    0
    Comment actions Permalink

    Thank you! 

Please sign in to leave a comment.