hello
i have 2 questions
first i want remove all character after this } to the end of the line
second i want kill all line with the first character not {
any ideas ??
remove character
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
- DataMystic Support
- Site Admin
- Posts: 2229
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
1) Search for this pattern:
\}[^\r\n]*?
Replace with nothing.
2) Use the Remove Menu\Remove lines matching with a pattern of
\}
You could use the web-based wizard for this one.
Simple!
\}[^\r\n]*?
Replace with nothing.
2) Use the Remove Menu\Remove lines matching with a pattern of
\}
You could use the web-based wizard for this one.
Simple!
Regards,
Simon Carter, https://www.DataMystic.com
https://www.JadeDiabetes.com - Insulin dose calculator for Type 1 diabetes
https://www.DownloadPipe.com - 250,000 free software downloads
Simon Carter, https://www.DataMystic.com
https://www.JadeDiabetes.com - Insulin dose calculator for Type 1 diabetes
https://www.DownloadPipe.com - 250,000 free software downloads
{123456789abcdef} 1. h5+ Kh6 2. Re6+ Kg7 3. h6+
result with
1) Search for this pattern:
\}[^\r\n]*? (patern perl)
result
{123456789abcdef}h6+
i want {------------------------------}
why its not good ??
for the question 2 i want delete ligne if the "first carater" is not equal
at {
thanks for your answers
result with
1) Search for this pattern:
\}[^\r\n]*? (patern perl)
result
{123456789abcdef}h6+
i want {------------------------------}
why its not good ??
for the question 2 i want delete ligne if the "first carater" is not equal
at {
thanks for your answers
- DataMystic Support
- Site Admin
- Posts: 2229
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
1) Replace it with a }
2) Use pattern
^[^}]
to delete lines if the first character is not a }
2) Use pattern
^[^}]
to delete lines if the first character is not a }
Regards,
Simon Carter, https://www.DataMystic.com
https://www.JadeDiabetes.com - Insulin dose calculator for Type 1 diabetes
https://www.DownloadPipe.com - 250,000 free software downloads
Simon Carter, https://www.DataMystic.com
https://www.JadeDiabetes.com - Insulin dose calculator for Type 1 diabetes
https://www.DownloadPipe.com - 250,000 free software downloads