Jump to content

VEX split, but using a string instead of symbol as the separator [SOLVED]


just_bob_2nd

Recommended Posts

Hello,

I have a primitive string attribute:
Bridge_Small_Dark_01

 

I need to procedurally extract the part of the string before "_Dark".

Using split it seems it only accepts singular symbols as a separator (eg "/"), I need to find a way to use the specific string as the separator.

 

Using

 s@name = split(s@name, "_Dark")[0];

does not work. Is there another function I should be looking into?

 

EDIT: using "_" as separator and using [0] + [1] etc in split would not work since not all assets have the same number of words before "_Dark"

 

EDIT2: Big thanks to Tomas Slancik for answering this on sidefx forums. Answer below:

 

use re_split() [www.sidefx.com]

string s = "Bridge_Small_Dark_01";
s[]@split = re_split( "_Dark", s );
Edited by just_bob_2nd
  • Thanks 1
Link to comment
Share on other sites

  • just_bob_2nd changed the title to VEX split, but using a string instead of symbol as the separator [SOLVED]

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...