StringBuilder PowerBuilder Reference Documentation

StringBuilder

Current Version: 11.6.0

Chilkat.StringBuilder

Build, transform, search, encode, decode, hash, and save mutable text.

Chilkat.StringBuilder is a flexible mutable text container for constructing and transforming strings. It supports appending text, integers, random values, UUIDs, encoded bytes, and BinData; searching, comparing, extracting, replacing, masking, regex processing, line-ending normalization, encoding, decoding, hashing, Markdown conversion, file I/O, and secure clearing of sensitive text.

Build text incrementally

Append strings, characters, integers, random values, UUIDs, encoded data, and other Chilkat objects without repeatedly recreating strings.

Search and extract

Find substrings, compare content, extract ranges, split or inspect text, and work with selected portions of the buffer.

Replace and transform

Replace text, mask sensitive values, normalize line endings, trim or edit content, and apply regex-based processing when needed.

Encoding and decoding

Encode or decode text and binary data using formats such as Base64, hex, URL encoding, quoted-printable, and other supported encodings.

Hashing and conversion

Compute hashes of the current text, convert Markdown to HTML, and move content between StringBuilder, BinData, files, and plain strings.

File I/O and secure clearing

Load text from files, save text with explicit character encodings, and securely clear the buffer when it contains sensitive data.

Common pattern: Use StringBuilder when text will be assembled or modified in multiple steps. Append or load the starting content, perform searches, replacements, encoding, decoding, hashing, or line-ending normalization, then retrieve the result as a string, save it to a file, or pass the object directly to another Chilkat method.

Object Creation

oleobject loo_StringBuilder
integer li_rc

loo_StringBuilder = create oleobject
li_rc = loo_StringBuilder.ConnectToNewObject("Chilkat.StringBuilder")
if li_rc < 0 then
    destroy loo_StringBuilder
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// ... use loo_StringBuilder ...

destroy loo_StringBuilder

PowerBuilder uses the Chilkat ActiveX through an oleobject: declare the variable, create it, connect it to the Chilkat class with ConnectToNewObject, and destroy it when finished. A negative return code from ConnectToNewObject means the ActiveX is not registered, or the registered ActiveX does not match the bitness (32-bit or 64-bit) of the PowerBuilder target.

Objects returned by methods (such as an HttpResponse or JsonObject) are also oleobject variables and must likewise be destroyed. A method that fails to return an object returns null; test with IsNull(). In the signatures on this page, the Chilkat class name identifies which object is expected or returned; the PowerBuilder variable type is always oleobject.

To bind to a specific major version of Chilkat, append the major version number to the ProgID, such as ConnectToNewObject("Chilkat.StringBuilder.11") for Chilkat v11.*.*.

Members typed blob exchange binary data as a Variant byte array. The PowerBuilder examples instead use the BinData-based alternatives (methods ending in Bd), which keep binary data inside Chilkat objects.

Properties

DebugLogFilePath
string DebugLogFilePath

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
HasEmojis
long HasEmojis (read-only)
Introduced in version 11.1.0

Returns 1 if the content contains one or more emoji characters.

top
IntValue
long IntValue
Introduced in version 9.5.0.58

Returns the content of the string converted to an integer.

top
IsBase64
long IsBase64 (read-only)
Introduced in version 9.5.0.76

Returns 1 if the content contains only those characters allowed in the base64 encoding. A base64 string is composed of characters 'A'..'Z', 'a'..'z', '0'..'9', '+', '/' and it is often padded at the end with up to two '=', to make the length a multiple of 4. Whitespace is ignored.

top
LastBinaryResult
blob LastBinaryResult (read-only)

This property is mainly used in SQL Server stored procedures to retrieve binary data from the last method call that returned binary data. It is only accessible if Chilkat.Global.KeepBinaryResult is set to 1. This feature allows for the retrieval of large varbinary results in an SQL Server environment, which has restrictions on returning large data via method calls, though temp tables can handle binary properties.

top
LastErrorHtml
string LastErrorHtml (read-only)

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
string LastErrorText (read-only)

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
string LastErrorXml (read-only)

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
long LastMethodSuccess

Indicates the success or failure of the most recent method call: 1 means success, 0 means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
LastStringResult
string LastStringResult (read-only)

In SQL Server stored procedures, this property holds the string return value of the most recent method call that returns a string. It is accessible only when Chilkat.Global.KeepStringResult is set to TRUE. SQL Server has limitations on string lengths returned from methods and properties, but temp tables can be used to access large strings.

top
LastStringResultLen
long LastStringResultLen (read-only)

The length, in characters, of the string contained in the LastStringResult property.

top
Length
long Length (read-only)
Introduced in version 9.5.0.58

The number of characters of the string contained within this instance.

top
VerboseLogging
long VerboseLogging

If set to 1, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is 0. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
string Version (read-only)

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

Append
long Append(string value)
Introduced in version 9.5.0.58

Appends a copy of the specified string to this instance.

Returns 1 for success, 0 for failure.

top
AppendBd
long AppendBd(ChilkatBinData binData, string charset, long offset, long numBytes)
Introduced in version 9.5.0.64

Appends the contents of binData. The charset specifies the character encoding of the bytes contained in binData. The charset can be any of the supported encodings listed at Chilkat Supported Character Encodings. To append the entire contents of binData, set offset and numBytes equal to zero. To append a range of binData, set the offset and numBytes to specify the range.

Returns 1 for success, 0 for failure.

top
AppendEncoded
long AppendEncoded(blob binaryData, string encoding)
Introduced in version 9.5.0.58

Appends binary data using the encoding specified by encoding, such as base64, hex, etc.

Returns 1 for success, 0 for failure.

More Information and Examples
top
AppendInt
long AppendInt(long value)
Introduced in version 9.5.0.58

Appends the string representation of a specified 32-bit signed integer to this instance.

Returns 1 for success, 0 for failure.

top
AppendLine
long AppendLine(string str, long crlf)
Introduced in version 9.5.0.65

Appends the str followed by a CRLF or LF to the end of the curent StringBuilder object. If crlf is 1, then a CRLF line ending is used. Otherwise a LF line ending is used.

Returns 1 for success, 0 for failure.

top
AppendLn
long AppendLn(string str)
Introduced in version 11.5.0

Appends the str followed by a CRLF to the end of this object. This method is the same as AppendLine , except the line-ending is always CRLF.

Returns 1 for success, 0 for failure.

top
AppendRandom
long AppendRandom(long numBytes, string encoding)
Introduced in version 9.5.0.96

Append numBytes random bytes encoded according to encoding. encoding can be hex, hex_lower, base64, base64url, or any other encoding supported by Chilkat.

Returns 1 for success, 0 for failure.

top
AppendSb
long AppendSb(ChilkatStringBuilder sb)
Introduced in version 9.5.0.62

Appends the contents of another StringBuilder to this instance.

Returns 1 for success, 0 for failure.

top
AppendUuid
long AppendUuid(long lowerCase)
Introduced in version 9.5.0.93

Generates and appends a random GUID/UUID such as 63c35f38-2b5f-4600-b3da-3ddee86d62b3. If lowerCase is 1, then the hex values use lowercase (a - f). If lowerCase is 0 then uppercase is used (A - F).

Note: This generates a version 4 UUID.

Returns 1 for success, 0 for failure.

More Information and Examples
top
AppendUuid7
long AppendUuid7(long lowerCase)
Introduced in version 10.1.0

Generates and appends a random version 7 UUID. If lowerCase is 1, then the hex values use lowercase (a - f). If lowerCase is 0 then uppercase is used (A - F).

Returns 1 for success, 0 for failure.

top
Clear
Clear()
Introduced in version 9.5.0.58

Removes all characters from the current StringBuilder instance.

top
Contains
long Contains(string str, long caseSensitive)
Introduced in version 9.5.0.58

Returns 1 if the str is contained within this object. For case sensitive matching, set caseSensitive equal to 1. For case-insensitive, set caseSensitive equal to 0.

top
ContainsWord
long ContainsWord(string word, long caseSensitive)
Introduced in version 9.5.0.69

Returns 1 if the word is contained within this object, but only if it is a whole word. This method is limited to finding whole words in strings that only contains characters in the Latin1 charset (i.e. iso-8859-1 or Windows-1252). A whole word can only contain alphanumeric chars where the alpha chars are restricted to those of the Latin1 alpha chars. (The underscore character is also considered part of a word.)

For case sensitive matching, set caseSensitive equal to 1. For case-insensitive, set caseSensitive equal to 0.

top
ContentsEqual
long ContentsEqual(string str, long caseSensitive)
Introduced in version 9.5.0.62

Returns 1 if the contents of this object equals the str. Returns 0 if unequal. For case insensitive equality, set caseSensitive equal to 0.

top
ContentsEqualSb
long ContentsEqualSb(ChilkatStringBuilder sb, long caseSensitive)
Introduced in version 9.5.0.62

Returns 1 if the contents of this object equals the sb. Returns 0 if unequal. For case insensitive equality, set caseSensitive equal to 0.

top
Decode
long Decode(string encoding, string charset)
Introduced in version 9.5.0.62

Decodes and replaces the contents with the decoded string. The encoding can be set to any of the following strings: base64, hex, quoted-printable (or qp), url, base32, Q, B, url_rc1738, url_rfc2396, url_rfc3986, url_oauth, uu, modBase64, or html (for HTML entity encoding). The full up-to-date list of supported binary encodings is available at the link entitled Supported Binary Encodings below.

Note: This method can only be called if the encoded content decodes to a string. The charset indicates the charset to be used in intepreting the decoded bytes. For example, the charset can be utf-8, utf-16, iso-8859-1, shift_JIS, etc.

Returns 1 for success, 0 for failure.

top
DecodeAndAppend
long DecodeAndAppend(string value, string encoding, string charset)
Introduced in version 9.5.0.87

Decodes a binary encoded string, where the binary encoding (such as url, hex, base64, etc.) is specified by encoding, and the underlying charset encoding (such as utf-8, windows-1252, etc.) is specified by charset. The decoded string is appended to this object.

Returns 1 for success, 0 for failure.

top
Encode
long Encode(string encoding, string charset)
Introduced in version 9.5.0.62

Encodes to base64, hex, quoted-printable, URL encoding, etc. The encoding can be set to any of the following strings: base64, hex, quoted-printable (or qp), url, base32, Q, B, url_rc1738, url_rfc2396, url_rfc3986, url_oauth, uu, modBase64, or html (for HTML entity encoding). The full up-to-date list of supported binary encodings is available at the link entitled Supported Binary Encodings below.

Returns 1 for success, 0 for failure.

top
EndsWith
long EndsWith(string substr, long caseSensitive)
Introduced in version 9.5.0.62

Returns 1 if the string ends with substr. Otherwise returns 0. The comparison is case sensitive if caseSensitive is 1, and case insensitive if caseSensitive is 0.

top
EntityDecode
long EntityDecode()
Introduced in version 9.5.0.62

Decodes HTML entities. See HTML entities for more information about HTML entities.

Returns 1 for success, 0 for failure.

More Information and Examples
top
GetAfterBetween
string GetAfterBetween(string searchAfter, string beginMark, string endMark)
Introduced in version 9.5.0.62

Begin searching after the 1st occurrence of searchAfter is found, and then return the substring found between the next occurrence of beginMark and the next occurrence of endMark.

Returns null on failure

top
GetAfterFinal
string GetAfterFinal(string marker, long removeFlag)
Introduced in version 9.5.0.77

Returns the substring found after the final occurrence of marker. If removeFlag is 1, the marker and the content that follows is removed from this content.

If the marker is not present, then the entire string is returned. In this case, if removeFlag is 1, this object is also cleared.

Returns null on failure

More Information and Examples
top
GetAsString
string GetAsString()
Introduced in version 9.5.0.58

Returns the contents as a string.

Returns null on failure

top
GetBefore
string GetBefore(string marker, long removeFlag)
Introduced in version 9.5.0.77

Returns the substring found before the 1st occurrence of marker. If removeFlag is 1, the content up to and including the marker is removed from this object's contents.

If the marker is not present, then the entire string is returned. In this case, if removeFlag is 1, this object is also cleared.

Returns null on failure

More Information and Examples
top
GetBetween
string GetBetween(string beginMark, string endMark)
Introduced in version 9.5.0.62

Returns the substring found between the 1st occurrence of beginMark and the next occurrence of endMark.

Returns null on failure

More Information and Examples
top
GetDecoded
blob GetDecoded(string encoding)
Introduced in version 9.5.0.62

Decodes and returns the decoded bytes. The encoding can be set to any of the following strings: base64, hex, quoted-printable (or qp), url, base32, Q, B, url_rc1738, url_rfc2396, url_rfc3986, url_oauth, uu, modBase64, or html (for HTML entity encoding). The full up-to-date list of supported binary encodings is available at the link entitled Supported Binary Encodings below.

Returns a zero-length byte array (as a Variant) on failure.

top
GetEncoded
string GetEncoded(string encoding, string charset)
Introduced in version 9.5.0.62

Returns the string contents encoded in an encoding such as base64, hex, quoted-printable, or URL-encoding. The encoding can be set to any of the following strings: base64, hex, quoted-printable (or qp), url, base32, Q, B, url_rc1738, url_rfc2396, url_rfc3986, url_oauth, uu, modBase64, or html (for HTML entity encoding). The full up-to-date list of supported binary encodings is available at the link entitled Supported Binary Encodings below.

Note: The Encode method modifies the content of this object. The GetEncoded method leaves this object's content unmodified.

Returns null on failure

top
GetHash
string GetHash(string algorithm, string encoding, string charset)
Introduced in version 9.5.0.91

Returns the hash of the contents of this object. The algorithm is the hash algorithm, and can be sha1, sha256, sha384, sha512, sha3-224, sha3-256, sha3-384, sha3-512, md2, md5, ripemd128, ripemd160,ripemd256, or ripemd320. The encoding can be base64, modBase64, base64Url, base32, base58, qp (for quoted-printable), url (for url-encoding), hex, hexLower, or any of the encodings found at Chilkat Binary Encodings List.

The charset is the character encoding byte representation to hash. It is typically utf-8. It can be any of the chacter encodings listed at Chilkat Character Encodings List.

Returns null on failure

More Information and Examples
top
GetNth
string GetNth(long index, string delimiterChar, long exceptDoubleQuoted, long exceptEscaped)
Introduced in version 9.5.0.62

Returns the Nth substring in string that is a list delimted by delimiterChar. The first substring is at index 0. If exceptDoubleQuoted is 1, then the delimiter char found between double quotes is not treated as a delimiter. If exceptEscaped is 1, then an escaped (with a backslash) delimiter char is not treated as a delimiter.

Returns null on failure

More Information and Examples
top
GetRange
string GetRange(long startIndex, long numChars, long removeFlag)
Introduced in version 9.5.0.87

Returns a string containing the specified range of characters from this instance. If removeFlag is 1, then the range of chars is removed from this instance.

Note: It was discovered that the range of chars was always removed regardless of the value of removeFlag. This is fixed in v9.5.0.89.

Returns null on failure

More Information and Examples
top
GetRangeSb
long GetRangeSb(long startIndex, long numChars, long removeFlag, ChilkatStringBuilder sb)
Introduced in version 11.3.0

Appends to startIndex the specified range of characters from this instance. If removeFlag is 1, then the range of chars is removed from this instance.

Returns 1 for success, 0 for failure.

top
IsWellFormed
long IsWellFormed(string format)
Introduced in version 11.6.0

Returns 1 if the contents of this object are well-formed JSON or XML. format selects which check to apply and must be json or xml (case insensitive). Returns 0 if the contents do not conform, or if format is anything else.

Chilkat's JSON and XML parsers are deliberately tolerant. Given text that is not well-formed they can still report success, leaving an empty or partially populated document. This method answers the question those parsers do not, and it does so without loading the text into a JsonObject or Xml object first. The checks applied here are the same ones those classes apply when their Strict property is set.

For xml this is a well-formedness check: element nesting and tag matching, attribute syntax and duplicate attributes, entity and character references, comments, processing instructions, CDATA sections, the XML declaration, the DOCTYPE declaration, and that the bytes are valid UTF-8 containing only characters XML permits. It is not a validating parse: no DTD or schema is read.

For json the full RFC 8259 grammar is checked.

Empty contents are not well-formed in either format, so 0 is returned.

Note: The contents of this object are never modified by this method.

top
LastNLines
string LastNLines(long numLines, long bCrlf)
Introduced in version 9.5.0.62

Returns the last N lines of the text. If fewer than numLines lines exists, then all of the text is returned. If bCrlf is 1, then the line endings of the returned string are converted to CRLF, otherwise the line endings are converted to LF-only.

Returns null on failure

More Information and Examples
top
LoadFile
long LoadFile(string path, string charset)
Introduced in version 9.5.0.62

Loads the contents of a file.

Returns 1 for success, 0 for failure.

top
MarkdownToHtml
long MarkdownToHtml(ChilkatJsonObject options, ChilkatStringBuilder sbHtml)
Introduced in version 11.2.0

This method converts the Markdown content of this object to HTML, storing the result in sbHtml. It supports both streaming and full document conversion. options specifies conversion options, including a key streaming option. In streaming mode, generated HTML is appended to sbHtml. In non-streaming mode, sbHtml is fully replaced by the generated HTML. For further details, see the examples linked below.

In streaming mode, only complete markdown lines are converted to HTML and removed from this object, leaving just the final partial line, if present. If this object contains only a partial markdown line, no HTML is emitted.


Starting in v11.3.0 ...

  • "emitJavascript": true can be included in options to emit Javascript function calls instead of HTML. This is used to update the response in an embedded browser in real-time. See Real-Time Streaming AI Responses to Embedded Browsers in Desktop Apps
  • "streamingShell": true is used to convert an empty string to an HTML shell to be used as the starting point before applying Javascript function calls. See Preparing the HTML Shell
  • "theme": "html_theme_name" can be included when creating the HTML shell to select a predefined theme or when converting Markdown to HTML in non-streaming mode. The available themes are:
    • ChatGPT - A style that is similar to the ChatGPT application.
    • cleanWin - A clean style for Windows applications.
    • cleanMac - A clean style for MacOS applications.
    • raw - No HTML styles, header, or body begin/end elements are emitted. Only the Markdown to HTML generated elements are emitted.

    If no theme is is included, then default HTML docType/root/body/header elements are emitted unless various parts are overridden by docType, rootElement, head, bodyStart, bodyEnd, and bodyExtra.

  • "usesPrism": true can be included when creating the HTML shell (or when converting Markdown to HTML in non-streaming mode) to include PRISM code highlighting.
  • "prism": { "theme": "prism_theme_name" } Is optional and can be used to specify the prism theme when usesPrism is true. Possible values are:
    • tomorrow
    • default
    • coy
    • dark
    • funky
    • okaidia
    • solarizedlight
    • twilight
  • "prism": { "version": "version_number" } Is optional can can be used to specify the prism version, such as "1.29.0" when usesPrism is true. If not specified, then "1.29.0" is used.
  • If no theme is specified, then any or all of the following HTML document parts can be explicitly specified:
    • "docType": "doctype_element" The DOCTYPE element. The default is "<!DOCTYPE html>"
    • "rootElement": "root_element" The html element. The default is "<html>"
    • "head": "head_section" The HTML fragment for the HTML head section. The default is "<head><meta charset="utf-8" /></head>".
      Note: If usesPrism is true, then prism related links will be inserted just before the </head>.
    • "bodyStart": "html_fragment" The HTML fragment to begin the body section. The default is "<body><div id="content">"
    • "bodyEnd": "html_fragment" The HTML fragment to end the body section. The default is "</div><!-- end-of-content-div --></body>"
    • "noContentDiv": true If set, the default bodyStart and bodyEnd do not include the "<div id="content">" and "</div><!-- end-of-content-div -->"
  • "copyButton": true In non-streaming mode, can optionally be set to include HTML for adding a copy button. THe copy button is added by default in streaming mode.
  • "ChatGPT": { "max-width": "css_length"; } Is optional can can be used to specify the max width of the body text if the theme is ChatGPT. The css_length is a length using CSS length units, such as "72ch", "40em", "800px", etc.

Returns 1 for success, 0 for failure.

top
MaskQuotedStrings
long MaskQuotedStrings(string maskChar, long quoteType, ChilkatStringTable maskedStrings)
Introduced in version 11.2.0

This function masks the content inside single and/or double-quoted strings by replacing it with a specified mask character (maskChar). The content of each masked quoted string is saved to maskedStrings. The contents can be restored by calling RestoreMaskedStrings.

quoteType determines which types of quoted strings are masked:

  1. Both single and double quoted.
  2. Only single quoted strings.
  3. Only double quoted strings.

Returns 1 for success, 0 for failure.

top
Obfuscate
Obfuscate()
Introduced in version 9.5.0.80

Obfuscates the string. (The Unobfuscate method can be called to reverse the obfuscation to restore the original string.)

The Chilkat string obfuscation algorithm works by taking the utf-8 bytes of the string, base64 encoding it, and then scrambling the letters of the base64 encoded string. It is deterministic in that the same string will always obfuscate to the same result. It is NOT a secure way of encrypting a string. It is only meant to be a simple means of transforming a string into something unintelligible.

More Information and Examples
top
Prepend
long Prepend(string value)
Introduced in version 9.5.0.61

Prepends a copy of the specified string to this instance.

Returns 1 for success, 0 for failure.

top
PunyDecode
long PunyDecode()
Introduced in version 9.5.0.71

In-place decodes the string from punycode.

Returns 1 for success, 0 for failure.

More Information and Examples
top
PunyEncode
long PunyEncode()
Introduced in version 9.5.0.71

In-place encodes the string to punycode.

Returns 1 for success, 0 for failure.

More Information and Examples
top
RegexMatch
long RegexMatch(string pattern, ChilkatJsonObject json, long timeoutMs)
Introduced in version 11.1.0

Searches the content of this object for substrings that match a regular expression pattern and returns the matches in json. Returns the number of matches or -1 for failure. timeoutMs is the maximum number of milliseconds of processing allowed before giving up. Pass 0 for an infinite amount of time. Failure information is also returned in json.

top
RegexReplace
long RegexReplace(ChilkatJsonObject json)
Introduced in version 11.1.0

Replaces the substrings of capture groups found in a previous call to RegexMatch.

top
RemoveAccents
long RemoveAccents()
Introduced in version 9.5.0.91

Removes the accents (diacritics) from European accented characters. This applies only to the accented characters found in the Windows-1252 (Latin alphabet) and Windows-1250 (Central European) charsets. Accent marks for characters in other languages will not be removed.

Returns 1 for success, 0 for failure.

More Information and Examples
top
RemoveAfterFinal
long RemoveAfterFinal(string marker)
Introduced in version 9.5.0.77

Removes the substring found after the final occurrence of the marker. Also removes the marker. Returns 1 if the marker was found and content was removed. Otherwise returns 0.

Returns 1 for success, 0 for failure.

More Information and Examples
top
RemoveBefore
long RemoveBefore(string marker)
Introduced in version 9.5.0.77

Removes the substring found before the 1st occurrence of the marker. Also removes the marker. Returns 1 if the marker was found and content was removed. Otherwise returns 0.

Returns 1 for success, 0 for failure.

More Information and Examples
top
RemoveCharsAt
long RemoveCharsAt(long startIndex, long numChars)
Introduced in version 9.5.0.87

Removes the specified range of characters from this instance.

Returns 1 for success, 0 for failure.

More Information and Examples
top
RemoveEmojis
RemoveEmojis()
Introduced in version 11.1.0

Removes all emoji characters from the string.

top
Replace
long Replace(string value, string replacement)
Introduced in version 9.5.0.58

Replaces all occurrences of a specified string in this instance with another specified string. Returns the number of replacements.

top
ReplaceAfterFinal
long ReplaceAfterFinal(string marker, string replacement)
Introduced in version 9.5.0.73

Replaces the content found after the final occurrence of marker with replacement.

Returns 1 for success, 0 for failure.

top
ReplaceAllBetween
long ReplaceAllBetween(string beginMark, string endMark, string replacement, long replaceMarks)
Introduced in version 9.5.0.64

Replaces the first occurrence of ALL the content found between beginMark and endMark with replacement. The beginMark and endMark are included in what is replaced if replaceMarks is 1.

Returns 1 for success, 0 for failure.

top
ReplaceBetween
long ReplaceBetween(string beginMark, string endMark, string value, string replacement)
Introduced in version 9.5.0.62

Replaces all occurrences of value with replacement, but only where value is found between beginMark and endMark. Returns the number of replacements made.

More Information and Examples
top
ReplaceFirst
long ReplaceFirst(string value, string replacement)
Introduced in version 9.5.0.77

Replaces the first occurrence of a specified string in this instance with another string. Returns 1 if the value was found and replaced. Otherwise returns 0.

Returns 1 for success, 0 for failure.

More Information and Examples
top
ReplaceI
long ReplaceI(string value, long replacement)
Introduced in version 9.5.0.67

Replaces all occurrences of value with the decimal integer replacement. Returns the number of replacements.

top
ReplaceNoCase
long ReplaceNoCase(string value, string replacement)
Introduced in version 9.5.0.82

Replaces all occurrences of value with replacement (case insensitive). Returns the number of replacements.

top
ReplaceWord
long ReplaceWord(string value, string replacement)
Introduced in version 9.5.0.62

Replaces all word occurrences of a specified string in this instance with another specified string. Returns the number of replacements made.

Important: This method is limited to replacing whole words in strings that only contains characters in the Latin1 charset (i.e. iso-8859-1 or Windows-1252). A whole word can only contain alphanumeric chars where the alpha chars are restricted to those of the Latin1 alpha chars. (The underscore character is also considered part of a word.)

More Information and Examples
top
RestoreMaskedStrings
long RestoreMaskedStrings(long quoteType, ChilkatStringTable maskedStrings)
Introduced in version 11.2.0

Restores single and/or double-quoted strings previously masked by MaskQuotedStrings.

quoteType determines which types of quoted strings are masked:

  1. Both single and double quoted.
  2. Only single quoted strings.
  3. Only double quoted strings.

Returns 1 for success, 0 for failure.

top
SecureClear
SecureClear()
Introduced in version 9.5.0.67

Removes all characters from the current StringBuilder instance, and write zero bytes to the allocated memory before deallocating.

top
SetNth
long SetNth(long index, string value, string delimiterChar, long exceptDoubleQuoted, long exceptEscaped)
Introduced in version 9.5.0.62

Sets the Nth substring in string in a list delimted by delimiterChar. The first substring is at index 0. If exceptDoubleQuoted is 1, then the delimiter char found between double quotes is not treated as a delimiter. If exceptEscaped is 1, then an escaped (with a backslash) delimiter char is not treated as a delimiter.

Returns 1 for success, 0 for failure.

More Information and Examples
top
SetString
long SetString(string value)
Introduced in version 9.5.0.61

Sets this instance to a copy of the specified string.

Returns 1 for success, 0 for failure.

top
Shorten
long Shorten(long numChars)
Introduced in version 9.5.0.87

Shortens the string by removing the last numChars chars.

Returns 1 for success, 0 for failure.

More Information and Examples
top
StartsWith
long StartsWith(string substr, long caseSensitive)
Introduced in version 9.5.0.62

Returns 1 if the string starts with substr. Otherwise returns 0. The comparison is case sensitive if caseSensitive is 1, and case insensitive if caseSensitive is 0.

top
ToCRLF
long ToCRLF()
Introduced in version 9.5.0.62

Converts line endings to CRLF (Windows) format.

Returns 1 for success, 0 for failure.

top
ToLF
long ToLF()
Introduced in version 9.5.0.62

Converts line endings to LF-only (UNIX) format.

Returns 1 for success, 0 for failure.

top
ToLowercase
long ToLowercase()
Introduced in version 9.5.0.62

Converts the contents to lowercase.

Returns 1 for success, 0 for failure.

top
ToUppercase
long ToUppercase()
Introduced in version 9.5.0.62

Converts the contents to uppercase.

Returns 1 for success, 0 for failure.

top
Trim
long Trim()
Introduced in version 9.5.0.62

Trims whitespace from both ends of the string.

Returns 1 for success, 0 for failure.

top
TrimInsideSpaces
long TrimInsideSpaces()
Introduced in version 9.5.0.62

Replaces all tabs, CR's, and LF's, with SPACE chars, and removes extra SPACE's so there are no occurances of more than one SPACE char in a row.

Returns 1 for success, 0 for failure.

top
Unobfuscate
Unobfuscate()
Introduced in version 9.5.0.80

Unobfuscates the string.

The Chilkat string obfuscation algorithm works by taking the utf-8 bytes of the string, base64 encoding it, and then scrambling the letters of the base64 encoded string. It is deterministic in that the same string will always obfuscate to the same result. It is not a secure way of encrypting a string. It is only meant to be a simple means of transforming a string into something unintelligible.

More Information and Examples
top
WriteFile
long WriteFile(string path, string charset, long emitBom)
Introduced in version 9.5.0.62

Writes the contents to a file. If emitBom is 1, then the BOM (also known as a preamble), is emitted for charsets that define a BOM (such as utf-8, utf-16, utf-32, etc.)

Returns 1 for success, 0 for failure.

top
WriteFileIfModified
long WriteFileIfModified(string path, string charset, long emitBom)
Introduced in version 9.5.0.73

Writes the contents to a file, but only if it is a new file or if the contents are different than the existing file. If emitBom is 1, then the BOM (also known as a preamble), is emitted for charsets that define a BOM (such as utf-8, utf-16, utf-32, etc.)

Returns 1 for success, 0 for failure.

top