Related changes
Appearance
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are shown in bold with a green bullet. See more at Help:Related changes.
List of abbreviations (help):
- D
- Edit made at Wikidata
- r
- Edit flagged by ORES
- N
- New page
- m
- Minor edit
- b
- Bot edit
- (±123)
- Page byte size change
- Temporarily watched page
4 June 2025
- Move log 22:30 Element10101 talk contribs moved page Module:Split/doc to Module:Sandbox/Element10101/Split/doc
- Move log 22:29 Element10101 talk contribs moved page Module:Split to Module:Sandbox/Element10101/Split
- diffhist Module:Split 22:28 0 Element10101 talk contribs
- diffhist Module:Split 22:27 +52 Element10101 talk contribs
- diffhist N Module:Split/doc 22:25 +638 Element10101 talk contribs (←Created page with '{{Module rating|<!-- Values: pre-alpha • alpha • beta • release • protected • semiprotected -- If a rating not needed/relevant, delete this template call -->}} <!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> == Usage == <code><nowiki>{{</nowiki>#invoke:{{subst:BASEPAGENAME}}|split|''string''|''separator''<nowiki>}}</nowiki></code> splits a string between strings separated by the separator, which def...')
- diffhist N Module:Split 22:23 +391 Element10101 talk contribs (←Created page with 'local p = {} p.split = function (inputstr, sep) -- if sep is null, set it as space if sep == nil then sep = '%s' end -- define an array local t = {} -- split string based on sep for str in string.gmatch(inputstr, '([^'..sep..']+)') do -- insert the substring in table table.insert(t, str) end -- return the array return t end return p')