Remove characters from StartPosition to end, or for Length characters
The string to remove characters from
The start position for removal
The number of characters to remove, or -1 to remove to the end of the string
1 2 | xf.Str.Remove( "The King's counting house" , 9) => The King xf.Str.Remove( "The King's counting house" , 12, 9) => The King's house |