Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a229c54819f0910d

Jump to content

Template:Str index/doc

From Wikipedia, the free encyclopedia

Usage

[edit]

{{str index|text|number}} = Returns the number-th character of text.

Base 1: the first character is numbered 1, and so on. Any leading or trailing whitespace is removed from the string before searching.

If the requested position is negative, this function will search the string counting from the last character. In other words, number = -1 is the same as asking for the last character of the string.

A requested position equal to zero or with a value longer than the string will generate an error.

This function will properly return a space character (' ') if the selected position contains a space.

Examples

[edit]
  • {{str index|0123456789ABCDEF|0}}String Module Error: String index out of range
  • {{str index|0123456789ABCDEF|1}}0
  • {{str index|0123456789ABCDEF|15}}E
  • {{str index|0123456789ABCDEF|18}}String Module Error: String index out of range

See also

[edit]