Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table plus
applyColStyleToCelltrue
columnTypess,s,s,s
heading0
multiplefalse
enableSortingfalse

Parameter name

Type

Required

Description

path_to_file

String

Yes

Specifies the file name.

regex

String

Yes

Specifies search string into the file path_to_file.

charset

String

No

The charset, optional. If you need to open a text file and the encoding is different, use a value that matches a valid charset name. Available starting with katl-commons 4.0.0.

Return Type

Boolean (true/false)

Example

Code Block
languagejs
//This will match any "com.keplerrominfo.jira" occurence in myfile.txt.
fileContains("C:/myfile.txt","com\\.keplerrominfo.jira");

...