From 2d7769a467fdc36ac6d98c7df40529d8e73f3d59 Mon Sep 17 00:00:00 2001 From: Andrew Hewus Fresh Date: Thu, 1 Apr 2021 10:32:33 -0700 Subject: [PATCH] Mention "trim" as a common name for removing space As discussed on perl5-porters, folks looking for this entry may not find it if they are coming from another language where this is commonly called "trim". --- lib/perlfaq4.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/perlfaq4.pod b/lib/perlfaq4.pod index d00a82f..8046753 100644 --- a/lib/perlfaq4.pod +++ b/lib/perlfaq4.pod @@ -926,7 +926,7 @@ implementing it yourself is highly recommended; you'll save yourself odd bugs popping up later by just using code which has already been tried and tested in production for years. -=head2 How do I strip blank space from the beginning/end of a string? +=head2 How do I trim a string to strip blank space from the beginning/end? (contributed by brian d foy)