What is the difference between chop & chomp functions in perl?
Answers were Sorted based on User's Feedback
Answer / thangaraju
chop is used remove last character,chomp function removes
only line endings.
Is This Answer Correct ? | 80 Yes | 15 No |
Answer / devinder kumar
chop will indiscriminately remove (and return) the last
character passed to it, while chomp will only remove the
end of record marker (generally, "\n"), and return the
number of characters so removed.
Is This Answer Correct ? | 40 Yes | 4 No |
Answer / nagaraju kancherla
chop() removes the last character from a scalar value.
chomp() checks whether the last characters of a string or
list of strings match the input line separator defined by
the $/ system variable. If they do, chomp removes them.
Is This Answer Correct ? | 25 Yes | 5 No |
Answer / pallavi
Chop function removes the last character of any specified
string or variable and returns the chopped data.
Ex: $a="abcdefghijkla";
$b= chop($a);
print $a;
Output - abcdefghijkl
Where as chomp removes all the new line at the end of any
specified string or variable and returns nothing.
Is This Answer Correct ? | 15 Yes | 3 No |
Answer / deepesh
chop() is used to remove last character where chomp() is
only remove new line if its existing or white space.
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / mass
Chop removes the last character of string completely and returns that last character. While chomp removes the last character if it is new line.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / wicked_sunny
Chop and Chomp are two very similar functions. Both of them
are used to delete symbols from the tail of the given
string. While both work with string and list parameters,
Chop deletes any ending symbol Chomp deletes only specified
substring from the end. If you pass list to any of these
two, all list elements will get processed and the return
value would be the result of last operation.
Is This Answer Correct ? | 22 Yes | 20 No |
Answer / ramya
chop removes the last character and returns the character
chopped
Chomp removes any trailing string that corresponds to the
current value of $/ and returns number of characters removed
Is This Answer Correct ? | 11 Yes | 10 No |
Answer / shaheed
If there is new line character at the end of string, chop()
and chomp() both will remove that new line character.
Else if there is no new line character at the end of string
then chop() will remove last character from the string
while chomp() keeps the string unchanged.
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / preethi
chop removes last character of the given string whereas
chomp removes the whitespace along with the character at the
end
chop-------> Perl----> Per
chomp------> Perl Program ----> Perl
Is This Answer Correct ? | 4 Yes | 15 No |
Explain the difference between use and require?
What are the different types of perl operators?
Explain which feature of PERL provides code reusability?
How and what are closures implemented in perl?
What are perl variables?
What does perl do in linux?
Write a program that explains the symbolic table clearly.
what are prefix dereferencer and list them out?
Explain lists ?
How can I implement the function overloading in Perl ? I read about the operator overloading, I do not know how to implement the function overloading. Thanks in advance ?
Explain perl. What are the advantages of programming in perl?
write a script to display mirror image of a entered value and also check whether Palindrome