[Gambas-user] Split Function ???
ocoquet
ocoquet at 3d-phenomen.fr
Tue Jan 12 15:23:15 CET 2021
Thank's Charlie, i'll try this....RegardsOlivierEnvoyé depuis mon appareil Galaxy
-------- Message d'origine --------De : Charlie Ogier <charlie at cogier.com> Date : 12/01/2021 14:47 (GMT+01:00) À : user at lists.gambas-basic.org Objet : Re: [Gambas-user] Split Function ???
Hi Olivier,
Try this: -
'****************************
Public Sub Form_Open()
Dim s As String = "Test - test2 - test3 test4"
Dim sArray As String[] = Split(s, "-") 'NOT " - "
Dim iLoop As Integer
For iLoop = 0 To sArray.Max
Print Trim(sArray[iLoop])
Next
End
'****************************
Charlie
On 12/01/2021 13:03, Olivier Coquet
wrote:
Hi all,
I have a problem with Split function.
If I have a string like this:
"Test - test2 - test3 test4"
and I split with " - " separation string, I obtain
"Test" "test2" "test3" "test4"
and I want:
"Test" "test2" "test3 test4"
How can I make this ?
regards
Olivier
----[ http://gambaswiki.org/wiki/doc/netiquette ]----
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gambas-basic.org/pipermail/user/attachments/20210112/bd0c516c/attachment.htm>
More information about the User
mailing list