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:
println(sizeof(""))
println(sizeof( "GFG" ))
println(sizeof( "123" ))
println(sizeof( "GeeksforGeeks" ))
|
Output:
0
3
3
13
Example 2:
println(sizeof( "∀" ))
println(sizeof( "∀∀" ))
println(sizeof( "∀123" ))
println(sizeof( "∀∀∀GFG" ))
|
Output:
3
6
6
12