I’m developing a macro for ER Studio 9.1.1 When I use Split function it’s highlighted as it’s a part of language. Macros are written in SAX Basic (v6), according to SAX Basic manual Split should be supported, but this code gives me error:
Dim strArray As String
Dim data As String
data = "one, two, three"
strArray = Split(data, ", ")
The error is “Expecting an existing scalar var”.
So my question is, is the Split supported and what is the scalar var?
As I found out, ER Studio macros doesn’t support Split function.
If you need Split functionality you have to write custom code.