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: src/content/docs/reference/builtins.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ that starts at the given index and extends to the end of the string. Optionally,
28
28
-`STRENDS`: checks if the string given as the first parameter ends with the string given as the second parameter
29
29
-`CONTAINS`: checks if the string given as the first parameter contains the string given as the second parameter
30
30
-`REGEX`: checks if the string given as the first parameter matches the regular expression given as second the parameter
31
+
-`URIENCODE`: transforms the given string according to the rules of [RFC 3986, Section 2.1](https://www.rfc-editor.org/rfc/rfc3986#section-2.1), making it suitable for use as part of the query string of a URI by percent-encoding all characters except `-`, `_`, `.`, and `~`.
32
+
-`URIDECODE`: decodes a string transformed by `URIENCODE` back to the original, unencoded version.
Copy file name to clipboardExpand all lines: src/content/docs/reference/exports.md
+5
Original file line number
Diff line number
Diff line change
@@ -51,3 +51,8 @@ Besides the above, there are format-specific parameters:
51
51
|`format`|`csv`, `dsv`| The output-format of the exported data. Might be `int`, `double`, `string`, `rdf` or `skip`. |
52
52
53
53
When using the [Nemo command-line client](/nemo-doc/guides/cli), some cli options are available to override the export directives in the program, to set the output (base) directory, and to control if existing files should be overwritten.
54
+
55
+
+The parameters in export directives can also make use of format strings, e.g.,
@@ -66,4 +66,10 @@ Import directives support various other optional parameters:
66
66
-`limit`: if specified, only at most this many tuples are imported (great for testing when working with large files)
67
67
-`compression`: used to define a compression format (`gzip` or `none`); this will normally be guessed correctly from the file extension, but can be useful for non-standard file names or URLs
68
68
-`delimiter`: only for import format `dsv`, specify a delimiter string (should be a single character)
69
+
-`ignore_headers`: only for import formats `csv`, `dsv`, and `tsv`, if true, the first record (containing the column headers) is ignored
69
70
-`base`: specify the base IRI to be used when importing RDF data; if given, relative IRIs will be made absolute based on this base; otherwise, relative IRIs remain relative in Nemo
71
+
72
+
The parameters in import directives can also make use of format strings, e.g.,
0 commit comments