Julia Language Input

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Syntax

  • readline()
  • readlines()
  • readstring(STDIN)
  • chomp(str)
  • open(f, file)
  • eachline(io)
  • readstring(file)
  • read(file)
  • readcsv(file)
  • readdlm(file)

Parameters

ParameterDetails
chomp(str)Remove up to one trailing newline from a string.
strThe string to strip a trailing newline from. Note that strings are immutable by convention. This function returns a new string.
open(f, file)Open a file, call the function, and close the file afterward.
fThe function to call on the IO stream opening the file generates.
fileThe path of the file to open.


Got any Julia Language Question?