Possibility to do SplitStr with more than one character?

Discuss any general programming issues here
Post Reply
Bugala
Posts: 1178
Joined: Sun Feb 14, 2010 7:11 pm

Possibility to do SplitStr with more than one character?

Post by Bugala »

I am trying to use SplitStr command, however, that command unfortunately restricts its usage to only one character.

What I am in need of separating currently is marked by ",;," and ",:,".

Is there another command that can do this?
If not, then future request that SplitStr can use more than one character.

I can get around this by replacing each ",;," with some single character incident but it would be better to have possibilty for multiple characters, since obviously that they have originally put the file to have ",;," as separator is to avoid accidental conflicts with single characters.
User avatar
airsoftsoftwair
Posts: 5433
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Possibility to do SplitStr with more than one character?

Post by airsoftsoftwair »

Should be possible to add this functionality.
User avatar
airsoftsoftwair
Posts: 5433
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Possibility to do SplitStr with more than one character?

Post by airsoftsoftwair »

Code: Select all

- New: SplitStr() also supports strings longer than one character as the splitting token
Bugala
Posts: 1178
Joined: Sun Feb 14, 2010 7:11 pm

Re: Possibility to do SplitStr with more than one character?

Post by Bugala »

thank you.
Post Reply