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 'grep' function.
How and what are closures implemented in perl?
How to find the length of an array in perl?
What does undef function in perl?
How to read from a pipeline with Perl
What is 'rollback' command in perl?
What is perl shift array function?
How the interpreter is used in Perl?
Which feature of perl provides code reusability?
Does Perl have objects? If yes, then does it force you to use objects? If no, then why?
What does length(%HASH) produce if you have thirty-seven random keys in a newly created hash?
Explain ivalue?