String

Constants

ASCII letters (ascii_letters)

The concatenation of the ascii_lowercase and ascii_uppercase constants described below. This value is not locale-dependent

 

{ }
[{"data":{"type":"library","step":"ASCII letters","call":"string.constants.ascii_letters","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.ascii_letters":"ascii_letters","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}

ASCII lowercase letters (ascii_lowercase)

The lowercase letters 'abcdefghijklmnopqrstuvwxyz'. This value is not locale-dependent and will not change

 

{ }
[{"data":{"type":"library","step":"ASCII lowercase letters","call":"string.constants.ascii_lowercase","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.ascii_lowercase":"ascii_lowercase","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"abcdefghijklmnopqrstuvwxyz"}

ASCII uppercase letters (ascii_uppercase)

The uppercase letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'. This value is not locale-dependent and will not change.

 

{ }
[{"data":{"type":"library","step":"ASCII uppercase letters","call":"string.constants.ascii_uppercase","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.ascii_uppercase":"ascii_uppercase","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"ABCDEFGHIJKLMNOPQRSTUVWXYZ"}

Digits (digits)

The string '0123456789'.

 

{ }
[{"data":{"type":"library","step":"Digits","call":"string.constants.digits","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.digits":"digits","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"0123456789"}

Hex digits (hexdigits)

The string '0123456789abcdefABCDEF'

 

{ }
[{"data":{"type":"library","step":"Hex digits","call":"string.constants.hexdigits","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.hexdigits":"hexdigits","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"0123456789abcdefABCDEF"}

Letters (letters)

The concatenation of the strings lowercase and uppercase described below.

 

{ }
[{"data":{"type":"library","step":"Letters","call":"string.constants.letters","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.letters":"letters","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"}

Lowercase letters (lowercase)

The lowercase letters 'abcdefghijklmnopqrstuvwxyz'. This value is not locale-dependent and will not change

 

{ }
[{"data":{"type":"library","step":"Lowercase characters","call":"string.constants.lowercase","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.lowercase":"lowercase","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"abcdefghijklmnopqrstuvwxyz"}

Oct digits (octdigits)

The string '01234567'.

 

{ }
[{"data":{"type":"library","step":"Oct digits","call":"string.constants.octdigits","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.octdigits":"octdigits","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"01234567"}

Punctuation characters (punctuation)

String of ASCII characters which are considered punctuation characters.

 

{ }
[{"data":{"type":"library","step":"Punctuation characters","call":"string.constants.punctuation","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.punctuation":"punctuation","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"!\"#$%&'()*+,-.\/:;<=>?@[\\]^_`{|}~"}

Printable characters (printable)

String of characters which are considered printable. This is a combination of digits, letters, punctuation, and whitespace.

 

{ }
[{"data":{"type":"library","step":"Printable characters","call":"string.constants.printable","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.printable":"printable","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-.\/:;<=>?@[\\]^_`{|}~ \t\n\r\\x0b\\x0c"}

Uppercase letters (uppercase)

A string containing all the characters that are considered uppercase letters. On most systems this is the string 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

 

{ }
[{"data":{"type":"library","step":"Uppercase letters","call":"string.constants.uppercase","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.uppercase":"uppercase","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"ABCDEFGHIJKLMNOPQRSTUVWXYZ"}

Whitespace characters (whitespace)

A string containing all characters that are considered whitespace. On most systems this includes the characters space, tab, linefeed, return, formfeed, and vertical tab

 

{ }
[{"data":{"type":"library","step":"Whitespace characters","call":"string.constants.whitespace","args":{},"maxpaths":1,"uuid":"9148d39266042bc89aff74e46b1a483b","x":300,"y":400,"width":120,"height":32,"string":"string","string.constants.whitespace":"whitespace","data_to_var":"result"},"paths":[]}]

Example Response

{"result":"\t\n\\x0b\\x0c\r "}