Re: String manipluation inside an expression shape

Home Page Forums BizTalk 2004 – BizTalk 2010 String manipluation inside an expression shape Re: String manipluation inside an expression shape

#23177

Hi,

   Use the definition System.String in the following way in your Expression shape:

if (System.String.Equals(<YourVariable>, ‘somestring’))

{

    //Your code here

}

   Keep in mind that the programming language used in BizTalk environment and Expression shapes is XLANGs, not C#, and is more limited in what you can do with string functionality.

Good luck!

Daniel.