How do I use string methods within an Orchestration.
I would like to be able to do the following.
myStr = myXML.Myfield;
myInt = myStr.IndexOf("this",1);
thank you
Rick
Hello.
The Orchestration puts restrictions on the use of String and other .net data
types. In the past, I have used the StringBuilder class instead.
Charles Young talks about it here:
http://geekswithblogs.net/cyoung/articles/3820.aspx
Under Primitive Data Types
Stephen W. Thomas
http://www.geekswithblogs.net/sthomas
"Rick" wrote:
> How do I use string methods within an Orchestration.
> I would like to be able to do the following.
>
> myStr = myXML.Myfield;
> myInt = myStr.IndexOf("this",1);
>
>
> thank you
> Rick
>