|
Home > Archive > Unix Shell > August 2007 > How to remove time tag by regulare expression?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to remove time tag by regulare expression?
|
|
| iLRainyday 2007-08-24, 1:22 am |
| -------------
Avril Lavigne <Innocence>
[00:07.99]Waking up I see that everything is ok
[00:11.25]The first time in my life and now it's so great
[00:14.89]Slowing down I look around and I am so amazed
[00:18.01]I think about the little things that make life great
[00:23.21]I wouldn't change a thing about it
[00:29.01]This is the best feeling
[00:35.61]
[00:36.21]This innocence is brilliant, I hope that it will stay
[00:43.31]This moment is perfect
[00:47.61]Please don't go away, I need you now
[00:55.71]And I'll hold on to it, don't you let it pass you by
[01:05.01]
[01:08.61]
[01:09.99]I found a place so safe, not a single tear
[01:13.81]The first time in my life and now it's so clear
[01:17.31]Feel calm I belong, I'm so happy here
[01:20.61]It's so strong and now I let myself be sincere
[01:25.91]I wouldn't change a thing about it
[01:31.31]This is the best feeling
[01:37.21]
[01:38.61]This innocence is brilliant, I hope that it will stay
[01:45.31]This moment is perfect, please don't go away, I need you now
[01:57.61]And I'll hold on to it, don't you let it pass you by
[02:05.31]
[02:05.61]It's the state of bliss you think you're dreaming
[02:08.91]It's the happiness inside that you're feeling
[02:12.61]It's so beautiful it makes you wanna cry
[02:17.99]
[02:18.61]It's the state of bliss you think you're dreaming
[02:22.61]It's the happiness inside that you're feeling
[02:26.22]It's so beautiful it makes you wanna cry
[02:32.61]It's so beautiful it makes you want to cry
[02:36.31]
[02:36.61]This innocence is brilliant, it makes you want to cry
[02:44.06]This innocence is brilliance, please don't go away
[02:50.61]Cause I need you now
[02:55.91]And I'll hold on to it, don't you let it pass you by
[03:03.31]
[03:03.61]This innocence is brilliant, I hope that it will stay
[03:10.61]This moment is perfect, please don't go away, I need you now
[03:23.61]And I'll hold on to it, don't you let it pass you by
[03:33.61]
[03:35.67]...END...
--------
I tried \[*\] to match these time tags,but it seems to catch nothing:
(
thanks in advance
| |
| Cyrus Kriticos 2007-08-24, 1:22 am |
| iLRainyday wrote:
> -------------
> Avril Lavigne <Innocence>
>
> [00:07.99]Waking up I see that everything is ok
> [00:11.25]The first time in my life and now it's so great
> [00:14.89]Slowing down I look around and I am so amazed
> [00:18.01]I think about the little things that make life great
> [00:23.21]I wouldn't change a thing about it
> [00:29.01]This is the best feeling
> [...]
> --------
>
> I tried \[*\] to match these time tags,but it seems to catch nothing:
> (
> [...]
If there is no second "]":
$ sed 's/^\[.*\]//' input.txt
better:
$ sed 's/^\[..\:..\...\]//' input.txt
--
Best | "Was bekommt man/frau, wenn man/frau Software kauft?
regards | Nichts außer einem Haufen Nullen und Einsen."
Cyrus | -- aus d. Lizenzvereinbarung von Spybot Search&Destroy
| |
| Cyrus Kriticos 2007-08-24, 1:22 am |
| iLRainyday wrote:
> -------------
> Avril Lavigne <Innocence>
>
> [00:07.99]Waking up I see that everything is ok
> [00:11.25]The first time in my life and now it's so great
> [00:14.89]Slowing down I look around and I am so amazed
> [00:18.01]I think about the little things that make life great
> [00:23.21]I wouldn't change a thing about it
> [00:29.01]This is the best feeling
> [...]
> --------
>
> I tried \[*\] to match these time tags,but it seems to catch nothing:
> (
> [...]
If there is no second "]":
$ sed 's/^\[.*\]//' input.txt
better:
$ sed 's/^\[..:..\...\]//' input.txt
--
Best | "Was bekommt man/frau, wenn man/frau Software kauft?
regards | Nichts außer einem Haufen Nullen und Einsen."
Cyrus | -- aus d. Lizenzvereinbarung von Spybot Search&Destroy
| |
| Bill Seivert 2007-08-24, 1:22 am |
| iLRainyday wrote:
> -------------
> Avril Lavigne <Innocence>
>
> [00:07.99]Waking up I see that everything is ok
> [00:11.25]The first time in my life and now it's so great
> [00:14.89]Slowing down I look around and I am so amazed
> [00:18.01]I think about the little things that make life great
> [00:23.21]I wouldn't change a thing about it
> [00:29.01]This is the best feeling
> [00:35.61]
> [00:36.21]This innocence is brilliant, I hope that it will stay
> [00:43.31]This moment is perfect
> [00:47.61]Please don't go away, I need you now
> [00:55.71]And I'll hold on to it, don't you let it pass you by
> [01:05.01]
> [01:08.61]
> [01:09.99]I found a place so safe, not a single tear
> [01:13.81]The first time in my life and now it's so clear
> [01:17.31]Feel calm I belong, I'm so happy here
> [01:20.61]It's so strong and now I let myself be sincere
> [01:25.91]I wouldn't change a thing about it
> [01:31.31]This is the best feeling
> [01:37.21]
> [01:38.61]This innocence is brilliant, I hope that it will stay
> [01:45.31]This moment is perfect, please don't go away, I need you now
> [01:57.61]And I'll hold on to it, don't you let it pass you by
> [02:05.31]
> [02:05.61]It's the state of bliss you think you're dreaming
> [02:08.91]It's the happiness inside that you're feeling
> [02:12.61]It's so beautiful it makes you wanna cry
> [02:17.99]
> [02:18.61]It's the state of bliss you think you're dreaming
> [02:22.61]It's the happiness inside that you're feeling
> [02:26.22]It's so beautiful it makes you wanna cry
>
> [02:32.61]It's so beautiful it makes you want to cry
> [02:36.31]
> [02:36.61]This innocence is brilliant, it makes you want to cry
> [02:44.06]This innocence is brilliance, please don't go away
> [02:50.61]Cause I need you now
> [02:55.91]And I'll hold on to it, don't you let it pass you by
> [03:03.31]
> [03:03.61]This innocence is brilliant, I hope that it will stay
> [03:10.61]This moment is perfect, please don't go away, I need you now
> [03:23.61]And I'll hold on to it, don't you let it pass you by
> [03:33.61]
>
> [03:35.67]...END...
>
> --------
>
> I tried \[*\] to match these time tags,but it seems to catch nothing:
> (
>
> thanks in advance
>
Try:
"s/[[][^]][^]]*[]]//"
Bill Seivert
|
|
|
|
|