strings/ | |
License | Copyright © 2007-2011, FreeBASIC Extended Library Development Group |
ext. | |
Functions | |
Explode | Splits a string into an array. |
Join | Joins together a string array. |
Split | Splits a string into an array. |
Split | !!WRITE ME!! |
Copyright © 2007-2011, FreeBASIC Extended Library Development Group
Distributed under the FreeBASIC Extended Library Group license. See accompanying file LICENSE.txt or copy at http://code.google.com
declare function Explode( byref subject as const string, byref delimit as const string, res() as string ) as integer
Splits a string into an array.
subject | the string to split up. |
delimit | The delimiter to use when splitting the array, only first character is used. |
res() | string array that results will be passed into. |
Integer number of delimited strings found.
declare function Split overload ( byref subject as const string, result() as string, byref delimiter as const string, byval limit as integer ) as integer
Splits a string into an array.
subject | the string to split up. |
result() | string array that results will be passed into. |
delimiter | The delimiter to use when splitting the array. |
limit | the maximum number of substrings to split to. |
Integer number of delimited strings found.
Splits a string into an array.
declare function Explode( byref subject as const string, byref delimit as const string, res() as string ) as integer
Joins together a string array.
declare function Join ( subject() as const string, byref glue as const string = " " ) as string
Splits a string into an array.
declare function Split overload ( byref subject as const string, result() as string, byref delimiter as const string, byval limit as integer ) as integer