On Fri, Jun 13, 2003 at 10:03:40PM +0100, Rob Dixon wrote:
> > basically i wanto get result 13 in $str.
> >
> > how to do this?
>
> It depends on what '13' looks like in general in the strings
> you're processing. If it's always the first non-space thing
> after the start of the line then
>
>
Hi Madhu.
You have two different questions here!
Madhu Reddy wrote:
> Hi,
>I want to find and replace string with particular
> pattern
>
>
> my $str = " 13 A.MFDF_FEEDER_ET";
> $str =~ s/\s+//g;
>
> here i want to replace string th
On Friday, June 13, 2003, at 03:08 PM, Madhu Reddy wrote:
Hi,
Howdy.
I want to find and replace string with particular
pattern
my $str = " 13 A.MFDF_FEEDER_ET";
$str =~ s/\s+//g;
here i want to replace string that end with "_ET" with
null
basically i
Hi,
I want to find and replace string with particular
pattern
my $str = " 13 A.MFDF_FEEDER_ET";
$str =~ s/\s+//g;
here i want to replace string that end with "_ET" with
null
basically i wanto get result 13 in $str.
how to do this?
I really appreci