Click or drag to resize
TextHelper Class
Contains various methods for text formatting and transformation.
Inheritance Hierarchy
SystemObject
  CMS.HelpersTextHelper

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 12.0.0
Syntax
C#
public class TextHelper

The TextHelper type exposes the following members.

Constructors
  NameDescription
Public methodTextHelper
Top
Fields
  NameDescription
Public fieldStatic memberDEFAULT_ELLIPSIS
Default ellipsis for the limit length methods.
Public fieldStatic memberNewLine
Newline symbol.
Top
Properties
  NameDescription
Public propertyEncodeValues
Indicates whether to encode merged text.
Public propertyStatic memberRegeExWhiteSpaces
Regular expression for white spaces.
Public propertyStatic memberRegExLineBreak
Gets or sets the regular expression for line break method.
Public propertyStatic memberRegExLineEnd
Regular expression for the line ending.
Public propertyStatic memberRegExLineEndWithSpaces
Regular expression for the line ending with the spaces before and after.
Public propertyStatic memberRegExRemoveMultipleCommas
Regular expression to identify multiple occurrences of comma (surrounded by white space).
Public propertyStatic memberRegExRemoveMultipleCommasStartEnd
Regular expression to identify comma at the beginning and at the end of a text.
Public propertyStatic memberRegExSplitPagesSentences
Regular expression for the tag match for SplitPages method.
Public propertyStatic memberRegExSplitPagesTags
Regular expression for the tag match for SplitPages method.
Public propertyStatic memberRegExToTitleCaseWords
Regular expression for the word match for ToTitleCase method.
Top
Methods
  NameDescription
Public methodStatic memberBreakLine
Add specified break tag into the input text in specified index.
Public methodStatic memberBulkReplace
Performs bulk replace of given replacements
Public methodStatic memberContentEquals
Checks if two text contents are equal. Ignores extra white spaces, and is case insensitive.
Public methodStatic memberEncodeRegexSubstitutes
Encodes regex substitutions like $_, $+, ... so they don't apply as substitutes in the replacement string.
Public methodStatic memberEnsureIndentation
Ensures the specified line endings in the given text.
Public methodStatic memberEnsureLineEndings
Ensures the specified line endings in the given text.
Public methodStatic memberEnsureMaximumLineLength
Limits the line length of given plain text.
Public methodStatic memberFirstLetterToUpper
Converts the first character to upper case.
Public methodStatic memberGetAmountText
If amount is equal to 1, expression using singular formatting string is returned, otherwise expression using plural formatting string is returned.
Public methodStatic memberJoin
Joins the given list of values with a given separator.
Public methodStatic memberLimitFileNameLength
Limits the filename length (leaves extension).
Public methodStatic memberLimitLength(String, Int32, CutTextEnum)
Limits the string length.
Public methodStatic memberLimitLength(String, Int32, String, Boolean, CutTextEnum)
Limits the string length.
Public methodStatic memberMerge
Joins the given list of values with a given separator.
Public methodStatic memberMergeIfNotEmpty
Joins the given list of values with a given separator. Each value is inserted into the final string only if not empty.
Public methodStatic memberReduceWhiteSpaces
Replace whitespaces in input text to specified replacement.
Public methodStatic memberReformatCode
Reformats the C# or JS code so it is properly indented.
Public methodStatic memberRemoveCharacters
Removes the invalid characters from the given string
Public methodStatic memberRemoveDiacritics
Removes diacritics from Latin characters, non-Latin characters are not changed.
Public methodStatic memberRemoveMultipleCommas
Removes multiple commas (i.e. transforms text "a,,b,," to "a, b").
Public methodStatic memberSetLine
Sets the specific line of the text to a new value
Public methodStatic memberSplitByString
Splits the given string by a defined string separator
Public methodStatic memberSplitCamelCase
Splits the camel cased input text into separate words.
Public methodStatic memberSplitPages
Returns an array of text pages created from the input string according to the page size.
Public methodStatic memberToTitleCase
Converts the specified string to title case.
Public methodStatic memberTrimEndingWord
Removes specified word from the end of the text (if the text ends with the word). Note: Ignore case enabled.
Public methodStatic memberTrimNumberSuffix
Trims the number suffix from an identifier
Top
Events
  NameDescription
Public eventStatic memberOnBeforeRemoveDiacritics
Occurs when the RemoveDiacritics method is called, returns false if original remove method should not be used.
Top
See Also