4D v13.4Character Reference Symbols |
||
|
4D v13.4
Character Reference Symbols
Character Reference Symbols
The character reference symbols: [[...]] These symbols are used to refer to a single character within a string. This syntax allows you to individually address the characters of a text variable, string variable, or field. Compatibility note: Starting with 4D v13, you can no longer view the former Mac OS symbols in the Method editor (≤...≥). If the character reference symbols appear on the left side of the assignment operator (:=), a character is assigned to the referenced position in the string. For example, if vsName is not an empty string, the following line sets the first character of vsName to uppercase: If(vsName#"") Otherwise, if the character reference symbols appear within an expression, they return the character (to which they refer) as a 1-character string. For example: ` The following example tests if the last character of vtText is an At sign "@" When you use the character reference symbols, you must address existing characters in the string in the same way you address existing elements of an array. For example if you address the 20th character of a string variable, this variable MUST contain at least 20 characters.
` Very bad and nasty thing to do, boo! will trigger the Runtime Error shown here: The following project method capitalizes the first character of each word of the text received as parameter and returns the resulting capitalized text: ` Capitalize text project method For example, the line: ALERT(Capitalize text("hello, my name is jane doe and i'm running for president!")) displays the alert shown here: |
PROPERTIES
Product: 4D SEE ALSO
ASCII Codes |