sealed class stringAn immutable array of characters. public string.Constructor(value)delegate int CompareDelegate(char v1, char v2)A type that represents a reference to a method with a parameter list and return typedelegate CompareFieldDelegate(char value)A type that represents a reference to a method with a parameter list and return typedelegate bool FindDelegate(char value)A type that represents a reference to a method with a parameter list and return typepublic string[] string.Split(delimiter, StringSplitOptions options=null)Split string at delimiterpublic string.FindString(string value, int maxcount=null)Returns a range list of matching stringspublic string string.ComplimentReturns the genetic compliment of the sequencepublic int string.IndexOf(string value)Returns the index of the start of a matching string segment or -1public bool string.StartsWith(string value)Returns true if the string starts with valuepublic bool string.EndsWith(string value)Returns true if the string ends with valuepublic char string.FirstReturns the first char in a string or null if emptypublic char string.LastReturns the last char in a string or null if emptypublic string string.Replace(find, replace)Returns a new string with values replacedpublic static string string.Normalize(value, NormalizationForms normalize=null)Returns a string with an optional normalized binary representationpublic static int string.CompareIgnoreCase(x, y)Case insensitive string comparison
public static string string.ToQuoted(value)Returns a nytril compatible quoted stringpublic static string string.ToLower(value)Returns a lowercase version of valuepublic static string string.ToUpper(value)Returns an uppercase version of valuepublic static string string.Convert(value)Convert value into type string, null if not successfulpublic virtual object.GetLayoutTipReturn a layout for the hint popuppublic virtual object.GetLayoutSpanReturn a layout inside a spanpublic virtual object.GetLayoutBlockReturn a layout inside a blockpublic virtual object.GetSourceReferenceReturn a source reference for this objectpublic virtual void object.GetTexSource(source)LaTeX source code for this objectpublic virtual Icon object.GetIconReturn a icon for this objectpublic virtual int object.Compare(value)Compares this object with another and returns (-1, 0, or 1)readonly Example = ListBlock { "Plain string"; "String with \t tab character and \n linefeed character. "; "String with \u0009 (hex unicode tab) character"; ArgString("string", 2); "The answer is {0}. "(42); "Back-" "to-" "back strings"; "Multiply-"*5;};
Plain stringString with tab character and linefeed character. String with (hex unicode tab) characterThis is a string with 2 argumentsThe answer is 42. Back-to-back stringsMultiply-Multiply-Multiply-Multiply-Multiply-