Erlang – chr
In this guide, we will discuss chr in Erlang. The method returns the index position of a character in a string. Syntax str(str1,chr1) Parameters str1 − This is the string which…
In this guide, we will discuss chr in Erlang. The method returns the index position of a character in a string. Syntax str(str1,chr1) Parameters str1 − This is the string which…
In this guide, we will discuss concat in Erlang. The method concats 2 strings and returns the concatenated string. Syntax concat(str1,str2) Parameters str1,str2 − The 2 strings which need to concatenated.…
In this guide, we will discuss Erlang equal. The method returns a Boolean value on whether one string is equal to another. If the strings are equal, it will return…
In this guide, we will discuss Erlang len. The method returns the length of a particular string Syntax len(str) Parameters str − This is the string for which the number of…
In this guide, we will discuss Erlang Strings. A String literal is constructed in Erlang by enclosing the string text in quotations. Strings in Erlang need to be constructed using…
In this guide, we will discuss Erlang Is_Integer. The method checks if a number is an integer value. Syntax Is_Integer(X) Parameters X - A number value. Return Value The return…
In this guide, we will discuss Is_float in Erlang. The method checks if a number is a float value. Syntax Is_float(X) Parameters X - A number value. Return Value The…
In this guide, we will discuss Erlang float. The method converts a number to a float value. Syntax float(X) Parameters X - A number value. Return Value The return value…
In this guide, we will discuss Erlang log. The method returns the logarithmic of the specified value. Syntax log(X) Parameters X - A value is specified for the logarithmic function.…
In this guide, we will discuss abs in Erlang. The method returns the absolute value of the specified number. Syntax abs(X) Parameters X - A value is specified for the…