Remove()

String::Remove(int32_t, int32_t) const method

Extracts everything but substring from current string.

String System::String::Remove(int32_t startIndex, int32_t count=INT32_MAX) const

Arguments

ParameterTypeDescription
startIndexint32_tIndex of first character to not extract.
countint32_tNumber of characters to not extract.

Return Value

String around specified substring.

See Also