Split lines

(imported topic written by ortalbeny12345654321)

hi,

maybe you can help me.

i want to get all that lines in one line:

(if((name of operating system starts with “Win”) = True) then comments of local users else “N/A”) ; (if((name of operating system starts with “Win”) = True) then (if (account disabled flag of it =FALSE) then “enable” else “disable”) of local users else “N/A”) ; (if ((name of operating system starts with “Win”) = True) then ((month of it as two digits & “/” & day_of_month of it as two digits & “/” & year of it as string) of dates (local time zone) of (last logons of local users)) else “N/A” )

i’ve tried many things like seperate , “,” , “;”

but nothing works…

related question ->>https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014751946#77777777-0000-0000-0000-000014751951

any suggestions?

thanks,

Ortal

(imported comment written by ortalbeny12345654321)

Hi,

if i have “a b c d e”

iwant it to desplay:

a, b,c,d,e

but the thing is that for argument a- there’s more then one result.

(imported comment written by jgstew)

http://bigfix.me/relevance/details/2998992

concatenation “;” of substrings separated by " " of “a b c d e”

(imported comment written by BrianPGreen)

There’s the ‘concatenation’ property that might help. For example:

Q: concatenation of (“a”; “b”; “c”)

A: abc

Q: concatenation “,” of (“a”; “b”; “c”)

A: a,b,c