Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.27 KB

readreallist.markdown

File metadata and controls

43 lines (28 loc) · 1.27 KB
layout title published tags
default
readreallist
true
reference
io functions
functions
readreallist

Prototype: readreallist(filename, comment, split, maxentries, maxbytes)

Return type: rlist

Description: Splits the file filename into separated values and returns the list.

The comment field is a multiline regular expression and will strip out unwanted patterns from the file being read, leaving unstripped characters to be split into fields. Using the empty string ("") indicates no comments.

Arguments:

  • filename : File name to read, in the range "?(/.*)
  • comment : [Unanchored][unanchored] regex matching comments, in the range .*
  • split : [Unanchored][unanchored] regex to split data, in the range .*
  • maxentries : Maximum number of entries to read, in the range 0,99999999999
  • maxbytes : Maximum bytes to read, in the range 0,99999999999

Example:

Prepare:

[%CFEngine_include_snippet(readreallist.cf, #+begin_src prep, .*end_src)%]

Run:

[%CFEngine_include_snippet(readreallist.cf, #+begin_src cfengine3, .*end_src)%]

Output:

[%CFEngine_include_snippet(readreallist.cf, #+begin_src\s+example_output\s*, .*end_src)%]

See Also: [readstringlist()][readstringlist], [readintlist()][readintlist]