L
LordJezo
Say I want to get something that looks like this:
/webtrends/production/wtm_wtx/datfiles/databases/148
LastAnalysisTime = Mon Mar 8 09:14:36 2004
Duration = 543
/webtrends/production/wtm_wtx/datfiles/databases/163
LastAnalysisTime = Mon Mar 8 22:16:56 2004
Duration = 1016
/webtrends/production/wtm_wtx/datfiles/databases/164
LastAnalysisTime = Tue Mar 9 00:29:35 2004
Duration = 874
/webtrends/production/wtm_wtx/datfiles/databases/165
LastAnalysisTime = Tue Mar 9 00:35:56 2004
Duration = 1255
To look like this:
148 | 543
163 | 1016
164 | 874
165 | 1255
(Where | signifies the end of a cell)
I know the first part would be a simple search and replace to eliminat
the extra words and numbers, but how would I shift up the duration t
be next to the number from the directory path
/webtrends/production/wtm_wtx/datfiles/databases/148
LastAnalysisTime = Mon Mar 8 09:14:36 2004
Duration = 543
/webtrends/production/wtm_wtx/datfiles/databases/163
LastAnalysisTime = Mon Mar 8 22:16:56 2004
Duration = 1016
/webtrends/production/wtm_wtx/datfiles/databases/164
LastAnalysisTime = Tue Mar 9 00:29:35 2004
Duration = 874
/webtrends/production/wtm_wtx/datfiles/databases/165
LastAnalysisTime = Tue Mar 9 00:35:56 2004
Duration = 1255
To look like this:
148 | 543
163 | 1016
164 | 874
165 | 1255
(Where | signifies the end of a cell)
I know the first part would be a simple search and replace to eliminat
the extra words and numbers, but how would I shift up the duration t
be next to the number from the directory path