I'm using Python 2.5. The DLL I imported is created using the CLR. The DLL function is returning a string. I'm trying to apply "partition" attribute to it. I'm not able to do it. Even the partition is not working. I think "all strings returned from CLR are returned as Unicode". Help me please. It's very urgent.
Thank you Jetxee for your reply.It was helpful.I want to know another issue. The exact problem is the string that is being returned from VB .NET contains strings seperated with '\r'.But while reaching Python '|r' becomes '\\r'.So i was not getting the right string aftr conversion also.Now i managed by giving '\\r' in my split function.I want to know about this.