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 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...
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 {...
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 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...
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 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 the protocol (http://, https://, etc.) from a URL, returning a protocol-relative path. Usage {{stripProtocol url}} url (required): input URL string Examples Remove proto...
Converts text into sentence case. The first letter of each sentence is capitalized, and all remaining letters are converted to lowercase. Use it to standardize inconsistent text inputs. Usage ...