Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions modules/ROOT/pages/import.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,13 @@ For example:
bin/neo4j-admin database import full --nodes import/node_header.csv,import/node_data_\d+\.csv
----

[NOTE]
====
In many scripting languages, you must use double backslashes (`\\`) when defining regular expression patterns inside string literals.
This is because a single backslash (`\`) is treated as an escape character.
====


==== Import data from CSV files using a more complex regular expression

For regular expression patterns containing commas, which is also the delimiter between files in a group, the pattern can be quoted to preserve the pattern.
Expand Down