You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sites/hurl.dev/_docs/filters.md
+35-7Lines changed: 35 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ jsonpath "$.books" count == 12
76
76
|[daysBeforeNow](#daysbeforenow)| Returns the number of days between now and a date in the past. | date | number |
77
77
|[decode](#decode)| Decodes bytes to string using encoding. | bytes | string |
78
78
|[first](#first)| Returns the first element from a collection. | collection | any |
79
-
|[format](#format)| Formats a date to a string given [a specification format]. | date | string |
79
+
|[dateFormat](#dateFormat)| Formats a date to a string given [a specification format]. | date | string |
80
80
|[htmlEscape](#htmlescape)| Converts the characters `&`, `<` and `>` to HTML-safe sequence. | string | string |
81
81
|[htmlUnescape](#htmlunescape)| Converts all named and numeric character references (e.g. `>`, `>`, `>`) to the corresponding Unicode characters. | string | string |
82
82
|[jsonpath](#jsonpath)| Evaluates a [JSONPath] expression. | string | any |
@@ -95,6 +95,8 @@ jsonpath "$.books" count == 12
95
95
|[urlDecode](#urldecode)| Replaces %xx escapes with their single-character equivalent. | string | string |
96
96
|[urlEncode](#urlencode)| Percent-encodes all the characters which are not included in unreserved chars (see [RFC3986]) with the exception of forward slash (/). | string | string |
97
97
|[urlQueryParam](#urlqueryparam)| Returns the value of a query parameter in a URL. | string | string |
98
+
|[utf8Decode](#utf8Decode)| Decodes bytes to string using UTF-8 encoding. | bytes | string |
99
+
|[utf8Encode](#utf8Encode)| Encodes a string to bytes using UTF-8 encoding. | string | bytes |
98
100
|[xpath](#xpath)| Evaluates a [XPath] expression. | string | string |
0 commit comments