![]() |
VOOZH | about |
The chomp() function in Perl is used to remove the last trailing newline from the input string.
Syntax: chomp(String) Parameters: String : Input String whose trailing newline is to be removed Returns: the total number of trailing newlines removed from all its arguments
Example 1:
Chopped String is : GfG is a computer science portal Number of Characters removed : 1
In the above code, it can be seen that input string containing a newline character (\n) which is removed by chomp() function. Example 2:
Chopped String is : Geeks for Geeks Welcomes you all Number of Characters removed : 2
In the above code, it can be seen that the input string1 containing two newline characters (\n\n) out of which only last newline character is removed by chomp() function and second last newline character is utilized which can be seen in the output.
The chomp() function in Perl is used to remove the newline character (\n) from the end of a string.
Hello, world!
In this code, the chomp() function is used to remove the newline character from the end of the string "Hello, world!\n". The resulting string "Hello, world!" is then printed to the console using the print() function.