Extract MethodReturns the sub string starting at a given position with a specified length. Syntaxstring.Extract(StartIndex: Integer, Length: Integer) : Stringwhere StartIndex is the index of the substring first character and Length the sub string length. ExampleMessage (Responsible.Extract(2,2)) Sample
|