Module:String to array: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 December 2025

  • curprev 21:4321:43, 10 December 2025 Bmcfann talk contribs 1,937 bytes +1,937 Created page with "local p = {} function string_to_array(Input_String, Separator) local my_log ={} if type(Input_String) ~= "string" then return nil end if type(Separator) ~= "string" then return nil end -- find the position of each separator in Input_String: local separator_positions = {} local next_start_position = 1 while next_start_position <= #Input_String do ch1, ch2 = mw.ustring.find(Input_String, Separator, next_start_position) if..."