Sv Split
From The Elder Scrolls Construction Set Wiki
This article has been added to the Wiki by CSbot, an automated WikiBot. If you notice anything wrong with this page, please notify DragoonWraith, this bot's operator, by adding a comment to the end of User talk:DragoonWraith. If this article seems to be correct, then you can help the Wiki by removing this message, by editing this page and deleting the {{BotAddedPage}} template from the top of it. Thank you.
A function added by the Oblivion Script Extender.
Syntax:
(substrings:Array) sv_Split toSplit:string delimiters:string
Given a string and a set of delimiters, returns an Array containing all the substrings separated by one or more of the delimiting characters. For example, sv_Split "#This is.a##. string." ".# " returns { "This", "is", "a", "string" }. The '.', '#', and space characters are removed.