An effective AI strategy must responsibly integrate with your data. AI trust, risk, and security management (TRiSM) ensures reliability, governance, and compliance across AI workflows if you’re de...
Converts a string into snakecase format by replacing spaces, dashes, and other non-word characters with underscores (_). Use it when you need consistent identifiers, especially for systems that pr...
The addCommas helper formats a numeric value by adding commas to separate thousands. Use it for improving the readability of large numbers, such as counts, totals, or financial values. Usage {...
The modulo helper returns the remainder when dividing the first number (a) by the second (b). This is useful for performing arithmetic operations or creating repeating patterns in templates. Us...
Removes only trailing whitespace from a string, leaving leading whitespace unchanged. Use it when values may include extra spaces at the end that need to be cleaned up. Usage {{trimRight value...
Removes only leading whitespace from a string, leaving trailing whitespace unchanged. Use it when you need to clean up values that may have extra spaces at the beginning. Usage {{trimLeft valu...
Shortens a string to a set number of words and optionally appends a suffix. This is useful when you need to limit text length in fields, summaries, or previews. Usage {{truncateWords string li...
Removes the protocol (http://, https://, etc.) from a URL, returning a protocol-relative path. Usage {{stripProtocol url}} url (required): input URL string Examples Remove proto...
Removes everything after the ? in a URL, returning only the base path. Use it when you need a clean URL without query parameters. Usage {{stripQuerystring url}} url (required): input string...
Removes all markup tags from the input string and returns only the plain text content. This is useful when working with values that may include formatting or markup but need to be stored, displaye...