Jump to content

LSL_Help_Post_14


You are about to reply to a thread that has been inactive for 1268 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

is a number of ways to do this. Probably the most simplest is to parse the string to a temp list, and then extract the elements to the desired lists
 

list temp = llParseString2List("text|text|text", ["|"], []);

list_0 += llList2List(temp, 0, 0); 
list_1 += llList2List(temp, 1, 1);
list_2 += llList2List(temp, 2, 2): 

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 1268 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...