Skip to main content
August 24, 2023
Solved

text logic

  • August 24, 2023
  • 20 replies
  • 0 views

Hi Team,

users: "username1; {username1; username2}" =>type text

how to get the output as 2 items

username1

{username1; username2}

    Best answer by mathieud0001

    Yes you can use the split function but not sure if that will help you do what you want to do.

    docs.appian.com/.../fnc_text_split.html

    20 replies

    mikes0011
    Brainy
    August 24, 2023

    Please clarify what you mean by "get the output" - what is this referring to? What are you trying to do?

    August 24, 2023

    From this text "username1; {username1; username2}", how can we split based on ";"

    August 24, 2023

    userList = "username1; {username1; username2}"

    finalList(Output):

    username1

    {username1; username2}