StringSegmentSplitOptions Structure

Specifies options for applicable StringSegment.Split method overloads, such as whether to omit empty substrings from the returned array or trim whitespace from segments.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
C#
public readonly struct StringSegmentSplitOptions : IEquatable<StringSegmentSplitOptions>
Inheritance
Object    ValueType    StringSegmentSplitOptions
Implements
IEquatableStringSegmentSplitOptions

Remarks

The StringSegmentSplitOptions is specified as a struct rather than an enum, so it can be compatible both with StringSplitOptions and the old StringSegment.Split methods that defined a simple bool removeEmptyEntries parameter as options.

Unlike StringSplitOptions, this struct defines the TrimEntries option for all platform targets.

Methods

Equals(Object) Determines whether the specified object is equal to this instance.
(Overrides ValueTypeEquals(Object))
Equals(StringSegmentSplitOptions) Indicates whether the current StringSegmentSplitOptions instance is equal to another one specified in the other parameter.
GetHashCode Returns a hash code for this StringSegmentSplitOptions instance.
(Overrides ValueTypeGetHashCode)
ToString Gets the string representation of this StringSegmentSplitOptions instance.
(Overrides ValueTypeToString)

Operators

BitwiseAnd(StringSegmentSplitOptions, StringSegmentSplitOptions) Performs a bitwise AND operation on the provided operands.
BitwiseOr(StringSegmentSplitOptions, StringSegmentSplitOptions) Performs a bitwise OR operation on the provided operands.
Equality(StringSegmentSplitOptions, StringSegmentSplitOptions) Determines whether two specified StringSegmentSplitOptions instances have the same value.
(Int32 to StringSegmentSplitOptions) Performs an explicit conversion from Int32 to StringSegmentSplitOptions.
(StringSegmentSplitOptions to Int32) Performs an explicit conversion from StringSegmentSplitOptions to Int32.
(StringSegmentSplitOptions to StringSplitOptions) Performs an explicit conversion from StringSegmentSplitOptions to StringSplitOptions.
(Boolean to StringSegmentSplitOptions) Performs an implicit conversion from bool to StringSegmentSplitOptions.
This member is obsolete and is specified to provide compatibility with the old StringSegment.Split overloads, which used to specify a boolean removeEmptyEntries argument in place of the new StringSegmentSplitOptions type.
Obsolete.
(StringSplitOptions to StringSegmentSplitOptions) Performs an implicit conversion from StringSplitOptions to StringSegmentSplitOptions.
Inequality(StringSegmentSplitOptions, StringSegmentSplitOptions) Determines whether two specified StringSegmentSplitOptions instances have different values.
OnesComplement(StringSegmentSplitOptions) Performs a bitwise NOT operation on the specified value.

Fields

None Represents the default options when splitting string segments by the Split method overloads.
RemoveEmptyEntries Omits elements that contain an empty string segment from the result. When combined with the TrimEntries option, then whitespace-only segments will also be omitted.
TrimEntries Trims white-space characters from each string segment in the result. When combined with the RemoveEmptyEntries option, then whitespace-only segments will also be omitted.

Extension Methods

Convert Converts an Object specified in the obj parameter to the desired targetType.
See the Examples section of the generic ConvertTTarget(Object, CultureInfo) overload for an example.
(Defined by ObjectExtensions)
ConvertTTarget Converts an Object specified in the obj parameter to the desired TTarget.
(Defined by ObjectExtensions)
In Gets whether item is among the elements of set.
See the Examples section of the generic InT(T, T) overload for an example.
(Defined by ObjectExtensions)
TryConvert Tries to convert an Object specified in the obj parameter to the desired targetType.
See the Examples section of the ConvertTTarget(Object, CultureInfo) method for a related example.
(Defined by ObjectExtensions)
TryConvert Tries to convert an Object specified in the obj parameter to the desired targetType.
See the Examples section of the ConvertTTarget(Object, CultureInfo) method for a related example.
(Defined by ObjectExtensions)
TryConvertTTarget Tries to convert an Object specified in the obj parameter to the desired TTarget.
See the Examples section of the ConvertTTarget(Object, CultureInfo) method for a related example.
(Defined by ObjectExtensions)
TryConvertTTarget Tries to convert an Object specified in the obj parameter to the desired TTarget.
See the Examples section of the ConvertTTarget(Object, CultureInfo) method for a related example.
(Defined by ObjectExtensions)

See Also