1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?> 2cdf0e10cSrcweir 3cdf0e10cSrcweir 4*82a1df74SAndrew Rist<!--*********************************************************** 5cdf0e10cSrcweir * 6*82a1df74SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 7*82a1df74SAndrew Rist * or more contributor license agreements. See the NOTICE file 8*82a1df74SAndrew Rist * distributed with this work for additional information 9*82a1df74SAndrew Rist * regarding copyright ownership. The ASF licenses this file 10*82a1df74SAndrew Rist * to you under the Apache License, Version 2.0 (the 11*82a1df74SAndrew Rist * "License"); you may not use this file except in compliance 12*82a1df74SAndrew Rist * with the License. You may obtain a copy of the License at 13*82a1df74SAndrew Rist * 14*82a1df74SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 15*82a1df74SAndrew Rist * 16*82a1df74SAndrew Rist * Unless required by applicable law or agreed to in writing, 17*82a1df74SAndrew Rist * software distributed under the License is distributed on an 18*82a1df74SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 19*82a1df74SAndrew Rist * KIND, either express or implied. See the License for the 20*82a1df74SAndrew Rist * specific language governing permissions and limitations 21*82a1df74SAndrew Rist * under the License. 22*82a1df74SAndrew Rist * 23*82a1df74SAndrew Rist ***********************************************************--> 24*82a1df74SAndrew Rist 25*82a1df74SAndrew Rist 26cdf0e10cSrcweir 27cdf0e10cSrcweir<helpdocument version="1.0"> 28cdf0e10cSrcweir<meta> 29cdf0e10cSrcweir<topic id="textsbasicshared03120314xml" indexer="include" status="PUBLISH"> 30cdf0e10cSrcweir<title id="tit" xml-lang="en-US">Split Function [Runtime]</title> 31cdf0e10cSrcweir<filename>/text/sbasic/shared/03120314.xhp</filename> 32cdf0e10cSrcweir</topic> 33cdf0e10cSrcweir<history> 34cdf0e10cSrcweir<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created> 35cdf0e10cSrcweir<lastedited date="2005-09-13T09:08:51">converted from old format - fpe</lastedited> 36cdf0e10cSrcweir</history> 37cdf0e10cSrcweir</meta> 38cdf0e10cSrcweir<body> 39cdf0e10cSrcweir<section id="split"> 40cdf0e10cSrcweir<bookmark xml-lang="en-US" branch="index" id="bm_id3156027"><bookmark_value>Split function</bookmark_value> 41cdf0e10cSrcweir</bookmark> 42cdf0e10cSrcweir<paragraph role="heading" id="hd_id3156027" xml-lang="en-US" level="1" l10n="U" oldref="1"><link href="text/sbasic/shared/03120314.xhp" name="Split Function [Runtime]">Split Function [Runtime]</link></paragraph> 43cdf0e10cSrcweir<paragraph role="paragraph" id="par_id3155805" xml-lang="en-US" l10n="U" oldref="2">Returns an array of substrings from a string expression.</paragraph> 44cdf0e10cSrcweir</section> 45cdf0e10cSrcweir<paragraph role="heading" id="hd_id3149177" xml-lang="en-US" level="2" l10n="U" oldref="3">Syntax:</paragraph> 46cdf0e10cSrcweir<paragraph role="paragraph" id="par_id3153824" xml-lang="en-US" l10n="U" oldref="4">Split (Text As String, delimiter, number)</paragraph> 47cdf0e10cSrcweir<paragraph role="heading" id="hd_id3149763" xml-lang="en-US" level="2" l10n="U" oldref="5">Return value:</paragraph> 48cdf0e10cSrcweir<paragraph role="paragraph" id="par_id3154285" xml-lang="en-US" l10n="U" oldref="6">String</paragraph> 49cdf0e10cSrcweir<paragraph role="heading" id="hd_id3145315" xml-lang="en-US" level="2" l10n="U" oldref="7">Parameters:</paragraph> 50cdf0e10cSrcweir<paragraph role="paragraph" id="par_id3156023" xml-lang="en-US" l10n="U" oldref="8"> 51cdf0e10cSrcweir<emph>Text:</emph> Any string expression.</paragraph> 52cdf0e10cSrcweir<paragraph role="paragraph" id="par_id3147560" xml-lang="en-US" l10n="CHG" oldref="9"> 53cdf0e10cSrcweir<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character.</paragraph> 54cdf0e10cSrcweir<paragraph role="paragraph" id="par_id3145069" xml-lang="en-US" l10n="U" oldref="12"> 55cdf0e10cSrcweir<emph>number (optional):</emph> The number of substrings that you want to return.</paragraph> 56cdf0e10cSrcweir<paragraph role="heading" id="hd_id3150398" xml-lang="en-US" level="2" l10n="U" oldref="10">Example:</paragraph> 57cdf0e10cSrcweir<section id="splitjoinex"> 58cdf0e10cSrcweir<paragraph role="code" id="par_id3151212" xml-lang="en-US" l10n="U" oldref="11">Dim a(3)</paragraph> 59cdf0e10cSrcweir<paragraph role="code" id="par_id3149204" xml-lang="en-US" l10n="U" oldref="13">Sub main()</paragraph> 60cdf0e10cSrcweir<paragraph role="code" id="par_id3156214" xml-lang="en-US" l10n="U" oldref="14"> a(0) = "ABCDE"</paragraph> 61cdf0e10cSrcweir<paragraph role="code" id="par_id3154217" xml-lang="en-US" l10n="U" oldref="15"> a(1) = 42</paragraph> 62cdf0e10cSrcweir<paragraph role="code" id="par_id3145173" xml-lang="en-US" l10n="U" oldref="16"> a(2) = "MN"</paragraph> 63cdf0e10cSrcweir<paragraph role="code" id="par_id3153104" xml-lang="en-US" l10n="U" oldref="17"> a(3) = "X Y Z"</paragraph> 64cdf0e10cSrcweir<paragraph role="code" id="par_id3154684" xml-lang="en-US" l10n="U" oldref="18"> JStr = Join1()</paragraph> 65cdf0e10cSrcweir<paragraph role="code" id="par_id3153367" xml-lang="en-US" l10n="U" oldref="19"> Call Show(JStr, Split1(JStr))</paragraph> 66cdf0e10cSrcweir<paragraph role="code" id="par_id3145271" xml-lang="en-US" l10n="U" oldref="20"> JStr = Join2()</paragraph> 67cdf0e10cSrcweir<paragraph role="code" id="par_id3155856" xml-lang="en-US" l10n="U" oldref="21"> Call Show(JStr, Split1(JStr))</paragraph> 68cdf0e10cSrcweir<paragraph role="code" id="par_id3159155" xml-lang="en-US" l10n="U" oldref="22"> JStr = Join3()</paragraph> 69cdf0e10cSrcweir<paragraph role="code" id="par_id3155413" xml-lang="en-US" l10n="U" oldref="23"> Call Show(JStr, Split1(JStr))</paragraph> 70cdf0e10cSrcweir<paragraph role="code" id="par_id3153190" xml-lang="en-US" l10n="U" oldref="24">End Sub</paragraph> 71cdf0e10cSrcweir<paragraph role="code" id="par_id3154320" xml-lang="en-US" l10n="U" oldref="25">Function Join1()</paragraph> 72cdf0e10cSrcweir<paragraph role="code" id="par_id3145748" xml-lang="en-US" l10n="U" oldref="26"> Join1 = Join(a(), "abc")</paragraph> 73cdf0e10cSrcweir<paragraph role="code" id="par_id3153142" xml-lang="en-US" l10n="U" oldref="45">End Function</paragraph> 74cdf0e10cSrcweir<paragraph role="code" id="par_id3152462" xml-lang="en-US" l10n="U" oldref="27">Function Join2()</paragraph> 75cdf0e10cSrcweir<paragraph role="code" id="par_id3146119" xml-lang="en-US" l10n="U" oldref="28"> Join2 = Join(a(), ",")</paragraph> 76cdf0e10cSrcweir<paragraph role="code" id="par_id3154790" xml-lang="en-US" l10n="U" oldref="29">End Function</paragraph> 77cdf0e10cSrcweir<paragraph role="code" id="par_id3147125" xml-lang="en-US" l10n="U" oldref="30">Function Join3()</paragraph> 78cdf0e10cSrcweir<paragraph role="code" id="par_id3149377" xml-lang="en-US" l10n="U" oldref="31"> Join3 = Join(a())</paragraph> 79cdf0e10cSrcweir<paragraph role="code" id="par_id3150114" xml-lang="en-US" l10n="U" oldref="32">End Function</paragraph> 80cdf0e10cSrcweir<paragraph role="code" id="par_id3154729" xml-lang="en-US" l10n="U" oldref="33">Function Split1(aStr)</paragraph> 81cdf0e10cSrcweir<paragraph role="code" id="par_id3145646" xml-lang="en-US" l10n="U" oldref="34"> Split1 = Split(aStr, "D")</paragraph> 82cdf0e10cSrcweir<paragraph role="code" id="par_id3154512" xml-lang="en-US" l10n="U" oldref="35">End Function</paragraph> 83cdf0e10cSrcweir<paragraph role="code" id="par_id3149400" xml-lang="en-US" l10n="U" oldref="36">Sub Show(JoinStr, TheArray)</paragraph> 84cdf0e10cSrcweir<paragraph role="code" id="par_id3153948" xml-lang="en-US" l10n="U" oldref="37"> l = LBound(TheArray)</paragraph> 85cdf0e10cSrcweir<paragraph role="code" id="par_id3146969" xml-lang="en-US" l10n="U" oldref="38"> u = UBound(TheArray)</paragraph> 86cdf0e10cSrcweir<paragraph role="code" id="par_id3150752" xml-lang="en-US" l10n="U" oldref="39"> total$ = "=============================" + Chr$(13) + JoinStr + Chr$(13) + Chr$(13)</paragraph> 87cdf0e10cSrcweir<paragraph role="code" id="par_id3148916" xml-lang="en-US" l10n="U" oldref="40"> For i = l To u</paragraph> 88cdf0e10cSrcweir<paragraph role="code" id="par_id3154754" xml-lang="en-US" l10n="U" oldref="41"> total$ = total$ + TheArray(i) + Str(Len(TheArray(i))) + Chr$(13)</paragraph> 89cdf0e10cSrcweir<paragraph role="code" id="par_id3156054" xml-lang="en-US" l10n="U" oldref="42"> Next i</paragraph> 90cdf0e10cSrcweir<paragraph role="code" id="par_id3147338" xml-lang="en-US" l10n="U" oldref="43"> MsgBox total$</paragraph> 91cdf0e10cSrcweir<paragraph role="code" id="par_id3155960" xml-lang="en-US" l10n="U" oldref="44">End Sub</paragraph> 92cdf0e10cSrcweir</section> 93cdf0e10cSrcweir</body> 94cdf0e10cSrcweir</helpdocument> 95