如何在 Maxscript 中使用 dot net string.Split

How to use dot net string.Split in Maxscript

如何在 maxscript 中使用 dot net 中的 Split 方法? 我搜索了maxscript中是否有这样的功能,但没有找到。

我有两个好消息要告诉你

I've searched if there is such function in maxscript but I didnt found any

您可以像这样使用 maxscript 原生 FilterString 函数:

mystring = "my_string_literate"
FilterString mystring "_"

How can I use the Split method from dot net in maxscript?

mystring = DotNetObject "System.String" "my_string_literate"
mystring.split "_"

这两种方法都会 return 原生 maxscript array :

#("my", "string", "literate")