func readLines(path string) ([][]byte, error) {
b, err := os.ReadFile(path)
if err != nil {
return nil, err
}
lines := bytes.Split(b, []byte{'\n'})
return lines, nil
}
func readLines(path string) ([]string, error) {
b, err := os.ReadFile(path)
if err != nil {
return nil, err
}
lines := slices.Collect(strings.Lines(string(b)))
return lines, nil
}
File f = new File(path);
List<String> lines = readAllLines(f.toPath());
Scanner s = new Scanner(new File(path));
s.useDelimiter("\\R");
List<String> lines = s.tokens().toList();
s.close();
FileReader R = new FileReader(path);
BufferedReader r = new BufferedReader(R);
List<String> lines = r.lines().toList();
r.close();
$lines = file($path);
if ($lines === false)
die("Can't open file $path");
my @lines = path($path)->lines;
std::ifstream file (path); for (std::string line; std::getline(file, line); lines.push_back(line)) {}
public List<string> GetLines(string _path) { return File.ReadAllLines(_path).ToList(); }
var lines = File(path).readAsLinesSync();
func readLines(path string) ([][]byte, error) { b, err := os.ReadFile(path) if err != nil { return nil, err } lines := bytes.Split(b, []byte{'\n'}) return lines, nil }
func readLines(path string) ([]string, error) { b, err := os.ReadFile(path) if err != nil { return nil, err } lines := strings.Split(string(b), "\n") return lines, nil }
func readLines(path string) ([]string, error) { b, err := os.ReadFile(path) if err != nil { return nil, err } lines := slices.Collect(strings.Lines(string(b))) return lines, nil }
fs.readFileSync(path).split("\n")
String text = Files.readString(new File(path).toPath()); List<String> lines = text.lines().collect(Collectors.toList());
File f = new File(path); List<String> lines = readAllLines(f.toPath());
Scanner s = new Scanner(new File(path)); s.useDelimiter("\\R"); List<String> lines = s.tokens().toList(); s.close();
FileReader R = new FileReader(path); BufferedReader r = new BufferedReader(R); List<String> lines = r.lines().toList(); r.close();
List<String> lines = Files.readAllLines(new File(path).toPath());
val lines = File(path).readLines()
$lines = file($path); if ($lines === false) die("Can't open file $path");
var Lines: TStringList; ... Lines := TStringList.Create; Lines.LoadFromFile(Path);
with open(path) as f: lines = f.readlines()
lines = open(path).readlines
let lines = BufReader::new(File::open(path).unwrap()) .lines() .collect::<Vec<_>>();
Dim lines = IO.File.ReadAllLines(path).ToList