sreek3502 has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to extract only the FREE HEAP count value which is 1400 from the below line. Here i'm using split function twice to get the value. Can somone help me to get a single regex that would extract the value 1400 using split function here.
my @split_val = split(',',$line); print $split_val[2]; my @split_val1= split(':',$split_val[2]);
input text
2014-04-23 14:66:87,666 INFO - HEAP - [USAGE: 1948.3, FREE: 1400, MAX +: 3597.5]; NON-HEAP - [USAGE: 611.9, FREE: 52.2, MAX: 1776.0]; CLASSE +S - [Loaded: 67007, Unloaded: 3237, Left: 63770]; THREADS - [Count: 3 +42]
Output: 1400
2017-09-19 Athanasius put code tags around the input text
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: March a regex using split function
by AnomalousMonk (Archbishop) on Sep 13, 2017 at 02:34 UTC | |
by sreek3502 (Novice) on Sep 13, 2017 at 04:52 UTC | |
by Laurent_R (Canon) on Sep 13, 2017 at 06:14 UTC | |
by perldigious (Priest) on Sep 13, 2017 at 12:56 UTC | |
by AnomalousMonk (Archbishop) on Sep 13, 2017 at 06:18 UTC | |
by Anonymous Monk on Sep 13, 2017 at 07:34 UTC | |
|
Re: March a regex using split function
by BillKSmith (Monsignor) on Sep 13, 2017 at 13:29 UTC |