Open In App

Get size of string in Julia – sizeof() Method

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The sizeof() is an inbuilt function in julia which is used to return the size of the specified string i.e, returned size will be equal to the number of code units in the string multiplied by the size (in bytes) of one code unit.

Syntax:
sizeof(str::AbstractString)

Parameters:

  • s::AbstractString: Specified string

Returns: It returns the size of the specified string i.e, returned size will be equal to the number of code units in the string multiplied by the size (in bytes) of one code unit.

Example 1:




# Julia program to illustrate 
# the use of String sizeof() method
  
# Get size of the specified string
println(sizeof(""))
println(sizeof("GFG"))
println(sizeof("123"))
println(sizeof("GeeksforGeeks"))


Output:

0
3
3
13

Example 2:




# Julia program to illustrate 
# the use of String sizeof() method
  
# Get size of the specified string
println(sizeof("∀"))
println(sizeof("∀∀"))
println(sizeof("∀123"))
println(sizeof("∀∀∀GFG"))


Output:

3
6
6
12

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads