String Handling - v1.18.0

You may use the nav bar to the left to select pages.

Below is a listing of all commands and a brief description for each.

ChangeCasing

Change the casing from one kind to another.

ChopLeft

Remove characters from the left end of the string.

ChopRight

Remove characters from the right end of the string.

Coe

Concatenate the args but return empty if any is empty.

CommaSeparatedStringToList

Take string, split on commas, trim spaces, return Tcl list.

DoubleChop

Return a string after taking out first and last characters.

EndsWith

Check whether the target string ends with the value.

HtmlParagraphsFromDoubleNewlinesString

Convert a string into a series of HTML paragraphs.

IsEmpty

Check if string value is empty.

Mash

Take string, make into all lowercase and no spaces.

NewlinesStringToOneHtmlParagraph

Convert newlines into HTML line breaks, put into paragraph.

NotEmpty

Check if string value is empty.

Prepend

Modify string to add value to the front of it.

SliceLeft

Divide string by matching and separating to the left.

SliceRight

Divide string by matching and separating to the right.

SplitAndTrim

Both splits a string and also does a trim on each element.

SplitStringByCharacterCount

Return a list of strings, each string limited in char count.

StartsAndEndsWith

Check whether the string starts and ends with the value.

StartsWith

Check whether the target string starts with the values.

String2File

Create a file, write string to it, and close the file.

StringContains

Check whether the target string contains the search value.

StringInsert

Insert value into target string, starting from a location.

StringMatchesAny

Like string match except you can use multiple patterns.

StringMid

Get substring of certain length, starting at given position.

StripHtmlTags

Strip HTML/XML tags from a string.

ToBackslashes

Take string value and return version with only backslashes.

ToDoubleBackslashes

Take string, switch single slashes to double backslashes.

ToForwardSlashes

Take string, switch single/double backslashes to forward.