Technical References - [getchars]

Extracts a portion of the text (also known as substring or Mid$).

numero = 251
interpreted = N
texte = [getchars start=x&end=y]Any Text[/getchars] To display a subsection of text, place the text inside a [getchars] context. Example:
[getchars start=14&end=18]Hello there, Edwina[/getchars]
The example above returns "Edwin," which is the sequence of letters starting at the 14th position and extending to the 18th position. Extracting sub-portions of text is useful when you need to get text from within files.
[getchars start=1&end=2&from=end]Hello there, Edwina[/getchars]
The example above returns "na," which is the sequence of letters starting at the 1st position from the end and extending to the 2nd position from the end. The following parameters are optional to the [getchars] context:
ParameterDescription
startIndex placement of the first character to return.
end(Optional) The index placement of the last character to return. If no end is specified, all of the text up to the end of the string is returned.
from(Optional) Set to "end" to get characters from the ending of the string instead of the beginning.
Trim(Optional) To remove leading and trailing white space in a given text string.
To display a subsection of some text, put the text inside a [getchars] context. Most often, the contents of the [getchars] context will be the value of an input field or database field that WebDNA will replace. Example 1:
[getchars start=1&end=2][field1][/getchars]
Example 2:
[getchars start=14&end=18]Hello there, Edwina[/getchars]
Example 2 returns “Edwin”, which is the sequence of letters starting at the 14th position and extending to the 18th position. Extracting sub-portions of text is useful when you need to get text from files. Example 3:
[getchars start=1&end=2&from=end]Hello there, Edwina[/getchars]
Example 3 returns “na”, which is the sequence of letters starting at the 1st position from the end and extending to the 2nd position from the end. You can use the new 'TRIM=Right/Left/Both' parameter for the [GetChars] context to remove leading and trailing white space in a given text string. Example WebDNA:
[text]test_string=This is a test. [/text]Example input string: "[test_string]"Remove leading white space:-[getchars start=1&end=&trim=left][test_string][/getchars]-Remove trailing white space:-[getchars start=1&end=&trim=right][test_string][/getchars]-Remove leading and trailing white space:-[getchars start=1&end=&trim=both][test_string][/getchars]-Remove leading and trailing white space, and retrieve characters in the 1-4 positions:-[getchars start=1&end=4&trim=both][test_string][/getchars]-Remove leading and trailing white space, and retrieve characters in the 1-5 positions, from the end:-[getchars start=1&end=5&trim=both&from=end][test_string][/getchars]-
Results... Example input string: " This is a test. " Remove leading white space: -This is a test. - Remove trailing white space: - This is a test.- Remove leading and trailing white space: -This is a test.- Remove leading and trailing white space, and retrieve characters in the 1-4 positions: -This- Remove leading and trailing white space, and retrieve characters in the 1-5 positions, from the end: -test.-

Note that you still need to supply the 'start' and 'end' parameters

[getchars] or [listchars] have never been multi-byte capable. The code assumes every character is a single byte. We produce a multi-byte capable version of [listchars] and [getchars]. They are named differently, [mblistchars] and [mbgetchars]. This way they don't mess up existing sites that aren't expecting them to be used on UTF-8

[getchars start=x&end=y]Any Text[/getchars]

To display a subsection of text, place the text inside a [getchars] context.

Example:

[getchars start=14&end=18]Hello there, Edwina[/getchars]

The example above returns "Edwin," which is the sequence of letters starting at the 14th position and extending to the 18th position. Extracting sub-portions of text is useful when you need to get text from within files.

[getchars start=1&end=2&from=end]Hello there, Edwina[/getchars]

The example above returns "na," which is the sequence of letters starting at the 1st position from the end and extending to the 2nd position from the end.

The following parameters are optional to the [getchars] context:
ParameterDescription
startIndex placement of the first character to return.
end(Optional) The index placement of the last character to return. If no end is specified, all of the text up to the end of the string is returned.
from(Optional) Set to "end" to get characters from the ending of the string instead of the beginning.
Trim(Optional) To remove leading and trailing white space in a given text string.


To display a subsection of some text, put the text inside a [getchars] context. Most often, the contents of the [getchars] context will be the value of an input field or database field that WebDNA will replace.

Example 1:
[getchars start=1&end=2][field1][/getchars]


Example 2:
[getchars start=14&end=18]Hello there, Edwina[/getchars]

Example 2 returns “Edwin”, which is the sequence of letters starting at the 14th position and extending to the 18th position. Extracting sub-portions of text is useful when you need to get text from files.

Example 3:
[getchars start=1&end=2&from=end]Hello there, Edwina[/getchars]

Example 3 returns “na”, which is the sequence of letters starting at the 1st position from the end and extending to the 2nd position from the end.

You can use the new 'TRIM=Right/Left/Both' parameter for the [getchars] context to remove leading and trailing white space in a given text string.

Example WebDNA:
[text]test_string=
This is a test.
[/text]

Example input string: "[test_string]"

Remove leading white space:
-[getchars start=1&end=&trim=left][test_string][/getchars]-

Remove trailing white space:
-[getchars start=1&end=&trim=right][test_string][/getchars]-

Remove leading and trailing white space:
-[getchars start=1&end=&trim=both][test_string][/getchars]-

Remove leading and trailing white space, and retrieve characters in the 1-4 positions:
-[getchars start=1&end=4&trim=both][test_string][/getchars]-

Remove leading and trailing white space, and retrieve characters in the 1-5 positions, from the end:
-[getchars start=1&end=5&trim=both&from=end][test_string][/getchars]-

Results...

Example input string: "
This is a test.
"
Remove leading white space:
-This is a test.
-
Remove trailing white space:
-
This is a test.-
Remove leading and trailing white space:
-This is a test.-
Remove leading and trailing white space, and retrieve characters in the 1-4 positions:
-This-

Remove leading and trailing white space, and retrieve characters in the 1-5 positions, from the end:
-test.-

Note that you still need to supply the 'start' and 'end' parameters



[getchars] or [listchars] have never been multi-byte capable. The code assumes every character is a single byte. We produce a multi-byte capable version of [listchars] and [getchars]. They are named differently, [mblistchars] and [mbgetchars]. This way they don't mess up existing sites that aren't expecting them to be used on UTF-8



DOWNLOAD WEBDNA NOW!

Top Articles:

F.A.Q

A compilation of some user's questions...

Tips and Tricks

A list of user-submitted tips ...

[biotype]

BioType is a behavioral biometrics WebDNA function based on ADGS research and development (from version 8...

WebDNA Modules

A list of the currently available modules...

AWS Raw WebDNA LAMP-Plus WebServer

Amazon Web Services (AWS) README for Machine Image ID...

Technical Change History

This Technical Change History provides a reverse chronological list of WebDNA changes...

Related Readings:

[uppercase]

Changes all lower case letters to upper case...

[setheader]

Changes header values in a shopping cart...

[listfiles]

When listing files...

[hideif]

[HideIf Comparison]Hide This HTML[/HideIf]...

[fileinfo]

Displays information about a particular file or folder...

[movefile]

This instructions move a file from one location to another...