Returns string between two positions
| #include "String and File String.au3" _StringCut( $sString, $nStartPosition [, $nEndPosition = 0 [, $bInner = True [, $bAsArray = False ]]]) |
| $sString | String to cut |
| $nStartPosition | Start position |
| $nEndPosition | End position, 0 = last position |
| $bInner | True = innner part, False = outer parts as concatenating string or array |
| $bAsArray | True = return outer parts as array, False = as concatenating string |
| string or array value | $bInner = true: return inner string, $bInner = false: return outer parts as string or array |
_StringCut( "Cut middle part of string", 5, 10 ) ; "middle"
_StringCut( "Cut outer parts of string", 5, 10, False ) ; "Cut parts of string"