tturner Posted March 17, 2021 Share Posted March 17, 2021 @group_group1 = @name == "piece0-0-4" works, but not @group_group1 = @name == "piece0*" what am I missing? Just trying to group by everything that has piece0 somewhere in the name. Thanks Quote Link to comment Share on other sites More sharing options...
anim Posted March 17, 2021 Share Posted March 17, 2021 you can use this string directly in Group parameters set to Primitive: @name=piece0* or to create new group based on it use Group SOP and type the same in Base Group: @name=piece0* or if you really need it in Wrangle use match() function: @group_group1 = match("piece0*", s@name); Quote Link to comment Share on other sites More sharing options...
tturner Posted March 17, 2021 Author Share Posted March 17, 2021 Thx! T Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.