childhoodbestfriend489 Posted March 28, 2021 Share Posted March 28, 2021 when every lines of a notecard contains text|text|text how to add each text in one of three lists? Link to comment Share on other sites More sharing options...
Mollymews Posted March 28, 2021 Share Posted March 28, 2021 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 More sharing options...
childhoodbestfriend489 Posted March 28, 2021 Author Share Posted March 28, 2021 So, the thing is llList2List, got it, thanks. Link to comment Share on other sites More sharing options...
Recommended Posts
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