Class SeparatorCombination
Class used to define separator combinations to numberic tokens
Inheritance
SeparatorCombination
Namespace: SdlSdl.CoreSdl.Core.LanguageProcessingTokenization
Assembly: Sdl.LanguagePlatform.Core.dll
Syntax
public class SeparatorCombination : ICloneable
Constructors
SeparatorCombination()
Declaration
public SeparatorCombination()
SeparatorCombination(CultureInfo, bool)
If true, blanks/nbsp's will be interchangeable
Declaration
public SeparatorCombination(CultureInfo culture, bool augmentGroupSeparators)
Parameters
SeparatorCombination(string, string, bool)
If true, blanks/nbsp's will be interchangeable
Declaration
public SeparatorCombination(string groupSeparators, string decimalSeparators, bool augmentGroupSeparators)
Parameters
Type |
Name |
Description |
string |
groupSeparators |
|
string |
decimalSeparators |
|
bool |
augmentGroupSeparators |
|
Properties
DecimalSeparators
Declaration
public string DecimalSeparators { get; set; }
Property Value
GroupSeparators
Declaration
public string GroupSeparators { get; set; }
Property Value
Methods
Clone()
Declaration
Returns
Type |
Description |
object |
A new object that is a deep copy of this instance.
|
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
IsSwappable()
true iff one separator is the full stop and the other is the comma
Declaration
public bool IsSwappable()
Returns
Implements