Re: remove spaces?

2017-05-18 Thread ToddAndMargo
On 05/18/2017 02:08 AM, Shlomi Fish wrote: On Thu, 18 May 2017 00:56:42 -0700 ToddAndMargo wrote: On 05/18/2017 12:22 AM, ToddAndMargo wrote: Hi All, Any of you guys have a favorite way to remove all spaces from a string? (Otherwise I will use a regex.) Many

Re: remove spaces?

2017-05-18 Thread Shlomi Fish
On Thu, 18 May 2017 00:56:42 -0700 ToddAndMargo wrote: > On 05/18/2017 12:22 AM, ToddAndMargo wrote: > > Hi All, > > > > Any of you guys have a favorite way to remove all > > spaces from a string? (Otherwise I will use a regex.) > > > > > > Many thanks, > > -T > > >

Re: net::smtp went missing

2017-05-18 Thread ToddAndMargo
On 05/18/2017 12:50 AM, ToddAndMargo wrote: On 05/18/2017 12:43 AM, Shlomi Fish wrote: On Wed, 17 May 2017 22:52:46 -0700 ToddAndMargo wrote: Hi All, Fedora Code 25 # rpm -qa rak\* rakudo-0.2017.04.2-2.fc25.x86_64 # perl6 --version This is Rakudo version 2017.04.2

Re: remove spaces?

2017-05-18 Thread ToddAndMargo
On 05/18/2017 12:22 AM, ToddAndMargo wrote: Hi All, Any of you guys have a favorite way to remove all spaces from a string? (Otherwise I will use a regex.) Many thanks, -T I like this. Any objections to it? perl6 -e 'my $x="1234,5678"; $x ~~ tr/ //; say $x;' 1234,5678 --

Re: net::smtp went missing

2017-05-18 Thread ToddAndMargo
On 05/18/2017 12:43 AM, Shlomi Fish wrote: On Wed, 17 May 2017 22:52:46 -0700 ToddAndMargo wrote: Hi All, Fedora Code 25 # rpm -qa rak\* rakudo-0.2017.04.2-2.fc25.x86_64 # perl6 --version This is Rakudo version 2017.04.2 built on MoarVM version 2017.04 implementing

remove spaces?

2017-05-18 Thread ToddAndMargo
Hi All, Any of you guys have a favorite way to remove all spaces from a string? (Otherwise I will use a regex.) Many thanks, -T -- Yesterday it worked. Today it is not working. Windows is like that.