> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xano.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Text

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> addslashes

`value|addslashes`

<Accordion title="Examples">
  ```javascript theme={null}
  "O'Reilly"|addslashes    // Returns "O\'Reilly"
  'test"quote'|addslashes  // Returns 'test\"quote'
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> capitalize

`value|capitalize`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello world"|capitalize    // Returns "Hello World"
  "john doe"|capitalize      // Returns "John Doe"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> concat

`value|concat:string1:string2`

<Accordion title="Examples">
  ```javascript theme={null}
  "Hello"|concat:" ":"World"    // Returns "Hello World"
  "user"|concat:"_":"123"       // Returns "user_123"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> contains

`value|contains:substring`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello world"|contains:"world"    // Returns true
  "hello world"|contains:"foo"      // Returns false
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> convert\_encoding

`value|convert_encoding:from:to`

<Accordion title="Examples">
  ```javascript theme={null}
  "text"|convert_encoding:"UTF-8":"ASCII"    // Converts encoding from UTF-8 to ASCII
  "text"|convert_encoding:"ASCII":"UTF-8"    // Converts encoding from ASCII to UTF-8
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> detect\_encoding

`value|detect_encoding`

<Accordion title="Examples">
  ```javascript theme={null}
  "Hello"|detect_encoding    // Returns detected character encoding (e.g. "UTF-8")
  "🌍"|detect_encoding      // Returns "UTF-8"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> ends\_with

`value|ends_with:suffix`

<Accordion title="Examples">
  ```javascript theme={null}
  "test.jpg"|ends_with:".jpg"    // Returns true
  "test.png"|ends_with:".jpg"    // Returns false
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> escape

`value|escape`

<Accordion title="Examples">
  ```javascript theme={null}
  "<div>"|escape    // Returns "&lt;div&gt;"
  "a & b"|escape    // Returns "a &amp; b"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> from\_utf8

`value|from_utf8`

<Accordion title="Examples">
  ```javascript theme={null}
  "études"|from_utf8    // Converts from UTF-8 to binary (ISO-8859-1)
  "🌍"|from_utf8        // Converts UTF-8 emoji to binary
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> icontains

`value|icontains:substring`

<Accordion title="Examples">
  ```javascript theme={null}
  "Hello World"|icontains:"world"    // Returns true (case insensitive)
  "Test123"|icontains:"TEST"         // Returns true
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> iends\_with

`value|iends_with:suffix`

<Accordion title="Examples">
  ```javascript theme={null}
  "test.JPG"|iends_with:".jpg"    // Returns true (case insensitive)
  "test.png"|iends_with:".JPG"    // Returns false
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> istarts\_with

`value|istarts_with:prefix`

<Accordion title="Examples">
  ```javascript theme={null}
  "HELLO world"|istarts_with:"hello"    // Returns true (case insensitive)
  "Test"|istarts_with:"test"           // Returns true
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> ltrim

`value|ltrim:characters`

<Accordion title="Examples">
  ```javascript theme={null}
  "  hello"|ltrim        // Returns "hello"
  "...test"|ltrim:"."    // Returns "test"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> querystring\_parse

`value|querystring_parse`

<Accordion title="Examples">
  ```javascript theme={null}
  "name=john&age=25"|querystring_parse    // Returns {name: "john", age: "25"}
  "x=1&x=2"|querystring_parse            // Returns {x: ["1", "2"]}
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_match

`value|regex_match:pattern`

<Accordion title="Examples">
  ```javascript theme={null}
  "test123"|regex_match:"\\d+"    // Returns ["123"]
  "abc"|regex_match:"[a-z]"       // Returns ["a"]
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_match\_all

`value|regex_match_all:pattern`

<Accordion title="Examples">
  ```javascript theme={null}
  "test123test456"|regex_match_all:"\\d+"    // Returns ["123", "456"]
  "abc def"|regex_match_all:"[a-z]"          // Returns ["a", "b", "c", "d", "e", "f"]
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_test

`value|regex_test:pattern`

<Accordion title="Examples">
  ```javascript theme={null}
  "test123"|regex_test:"\\d+"    // Returns true
  "abcdef"|regex_test:"\\d+"     // Returns false
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_quote

`value|regex_quote`

<Accordion title="Examples">
  ```javascript theme={null}
  ".*+?^${}()|[]\\"|regex_quote    // Returns "\\.\*\+\?\^\$\{\}\(\)\|\[\]\\\\"
  "[test]"|regex_quote            // Returns "\\[test\\]"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_replace

`value|regex_replace:pattern:replacement`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello123world"|regex_replace:"\\d+":"!"    // Returns "hello!world"
  "test"|regex_replace:"t":"T"                // Returns "TesT"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> rtrim

`value|rtrim:characters`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello  "|rtrim        // Returns "hello"
  "test..."|rtrim:"."    // Returns "test"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> split

`value|split:delimiter`

<Accordion title="Examples">
  ```javascript theme={null}
  "a,b,c"|split:","    // Returns ["a", "b", "c"]
  "test"|split:""      // Returns ["t", "e", "s", "t"]
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> sprintf

`value|sprintf`

<Accordion title="Examples">
  ```javascript theme={null}
  "%s %d"|sprintf:"test":123    // Returns "test 123"
  "%.2f"|sprintf:3.14159        // Returns "3.14"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> starts\_with

`value|starts_with:prefix`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello world"|starts_with:"hello"    // Returns true
  "test123"|starts_with:"abc"         // Returns false
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> strip\_accents

`value|strip_accents`

<Accordion title="Examples">
  ```javascript theme={null}
  "résumé"|unaccent    // Returns "resume"
  "café"|unaccent      // Returns "cafe"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> strip\_tags

`value|strip_tags:allowed_tags`

<Accordion title="Examples">
  ```javascript theme={null}
  "<p>test</p>"|strip_html         // Returns "test"
  "<p><b>test</b></p>"|strip_html:"<b>"    // Returns "<b>test</b>"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> strlen

`value|strlen`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello"|strlen    // Returns 5
  ""|strlen         // Returns 0
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> substr

`value|substr:start:length`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello"|substr:1:3    // Returns "ell"
  "test"|substr:0:2     // Returns "te"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> to\_lower

`value|to_lower`

<Accordion title="Examples">
  ```javascript theme={null}
  "Hello World"|to_lower    // Returns "hello world"
  "TEST"|to_lower          // Returns "test"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> to\_upper

`value|to_upper`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello world"|to_upper    // Returns "HELLO WORLD"
  "test"|to_upper          // Returns "TEST"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> to\_utf8

`value|to_utf8`

<Accordion title="Examples">
  ```javascript theme={null}
  "études"|to_utf8    // Converts to UTF-8 encoding
  "test"|to_utf8      // Ensures UTF-8 encoding
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> trim

`value|trim:characters`

<Accordion title="Examples">
  ```javascript theme={null}
  "  hello  "|trim        // Returns "hello"
  "...test..."|trim:"."   // Returns "test"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> url\_addarg

`value|url_addarg:name:value:encode`

<Accordion title="Examples">
  ```javascript theme={null}
  "https://example.com"|url_addarg:"page":"2":true    // Returns "https://example.com?page=2"
  "https://example.com?x=1"|url_addarg:"y":"2":true   // Returns "https://example.com?x=1&y=2"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> url\_delarg

`value|url_delarg:name`

<Accordion title="Examples">
  ```javascript theme={null}
  "https://example.com?page=2"|url_delarg:"page"    // Returns "https://example.com"
  "https://example.com?x=1&y=2"|url_delarg:"x"      // Returns "https://example.com?y=2"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> url\_getarg

`value|url_getarg:name:default`

<Accordion title="Examples">
  ```javascript theme={null}
  "https://example.com?page=2"|url_getarg:"page":""     // Returns "2"
  "https://example.com"|url_getarg:"page":"1"           // Returns "1"
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> url\_hasarg

`value|url_hasarg:name`

<Accordion title="Examples">
  ```javascript theme={null}
  "https://example.com?page=2"|url_hasarg:"page"    // Returns true
  "https://example.com"|url_hasarg:"page"           // Returns false
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> url\_parse

`value|url_parse`

<Accordion title="Examples">
  ```javascript theme={null}
  "https://user:pass@example.com:8080/path?q=1#hash"|url_parse    // Returns parsed URL object
  "https://example.com/test"|url_parse                            // Returns parsed URL object
  ```
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> index

`value|index:"search text"`

<Accordion title="Examples">
  ````js theme={null}
  "hello world"|index:"world"    // Returns 6
  ```javascript
  "hello world"|index:"world"    // Returns 6
  "hello world"|index:"WORLD"    // Returns false
  ````
</Accordion>

## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> iindex

`value|iindex:"search text"`

<Accordion title="Examples">
  ```javascript theme={null}
  "hello world"|iindex:"world"    // Returns 6
  "hello world"|iindex:"WORLD"    // Returns 6
  ```

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_get\_first\_match

  `value|regex_get_first_match:pattern`

  <Accordion title="Examples">
    ```javascript theme={null}
    "abc123def"|regex_get_first_match:"\\d+"    // Returns "123"
    "no digits"|regex_get_first_match:"\\d+"   // Returns null
    ```
  </Accordion>

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> regex\_get\_all\_matches

  `value|regex_get_all_matches:pattern`

  <Accordion title="Examples">
    ```javascript theme={null}
    "abc123def456"|regex_get_all_matches:"\\d+"    // Returns ["123", "456"]
    "no digits"|regex_get_all_matches:"\\d+"      // Returns []
    ```
  </Accordion>

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> replace

  `value|replace:search:replace`

  <Accordion title="Examples">
    ```javascript theme={null}
    "hello world"|replace:"world":"Xano"    // Returns "hello Xano"
    "foo bar foo"|replace:"foo":"baz"      // Returns "baz bar baz"
    ```
  </Accordion>

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> sql\_alias

  `value|sql_alias`

  <Accordion title="Examples">
    ```javascript theme={null}
    "user id"|sql_alias    // Returns "user_id"
    "Order Total"|sql_alias // Returns "order_total"
    ```
  </Accordion>

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> sql\_esc

  `value|sql_esc`

  <Accordion title="Examples">
    ```javascript theme={null}
    "O'Reilly"|sql_esc    // Returns "O''Reilly"
    "test; DROP TABLE"|sql_esc // Returns "test; DROP TABLE"
    ```
  </Accordion>

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> text\_escape

  `value|text_escape`

  <Accordion title="Examples">
    ```javascript theme={null}
    "<b>bold</b>"|text_escape    // Returns "&lt;b&gt;bold&lt;/b&gt;"
    "a & b"|text_escape         // Returns "a &amp; b"
    ```
  </Accordion>

  ## <Icon icon="https://mintcdn.com/xano-997cb9ee/aZQYcxhIvSDTNEim/images/icons/xs_temp.svg?fit=max&auto=format&n=aZQYcxhIvSDTNEim&q=85&s=6e05b86a660544b2d6040353bd8faac8" size={46} width="371" height="137" data-path="images/icons/xs_temp.svg" /> text\_unescape

  `value|text_unescape`

  <Accordion title="Examples">
    ```javascript theme={null}
    "&lt;b&gt;bold&lt;/b&gt;"|text_unescape    // Returns "<b>bold</b>"
    "a &amp; b"|text_unescape             // Returns "a & b"
    ```
  </Accordion>
</Accordion>
