I want to find some alternative regexp patterns of my following operation:
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
Regards,
HZ
On 3/14/2022 9:23 PM, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation:
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
Regards,google. dear god learn to use google.
HZ
On Wednesday, March 16, 2022 at 12:40:06 AM UTC+8, Ed Morton wrote:
On 3/14/2022 9:23 PM, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation: >>>google. dear god learn to use google.
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
Regards,
HZ
I tried googling it, and it seems that this feature of Perl is a very peculiar implementation that hasn't direct counterpart in other
languages.
HZ
On 18.03.2022 02:27, hongy...@gmail.com wrote:
On Wednesday, March 16, 2022 at 12:40:06 AM UTC+8, Ed Morton wrote:
On 3/14/2022 9:23 PM, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation:google. dear god learn to use google.
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
Regards,
HZ
I tried googling it, and it seems that this feature of Perl is a very peculiar implementation that hasn't direct counterpart in otherTry: man pcrepattern
languages.
On 15.03.2022 03:23, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation:
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?Avoid non-standard options (like grep's -P and -o), use standard tools
sed 's/.*::[ ]*\([^ ]\+\).*/\1/'
I want to find some alternative regexp patterns of my following operation:
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
Regards,
HZ
On Friday, March 18, 2022 at 10:29:11 AM UTC+8, Janis Papanagnou wrote:
On 15.03.2022 03:23, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation: >>>Avoid non-standard options (like grep's -P and -o), use standard tools
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
sed 's/.*::[ ]*\([^ ]\+\).*/\1/'
Thank you. The following version is clearer:
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | sed -E 's/.*::[ ]*([^ ]+).*/\1/'
NKPTS
HZ
On 18.03.2022 03:39, hongy...@gmail.com wrote:
On Friday, March 18, 2022 at 10:29:11 AM UTC+8, Janis Papanagnou wrote:
On 15.03.2022 03:23, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation:Avoid non-standard options (like grep's -P and -o), use standard tools
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
sed 's/.*::[ ]*\([^ ]\+\).*/\1/'
Thank you. The following version is clearer:Maybe clearer but obviously non-standard.
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | sed -E 's/.*::[ ]*([^ ]+).*/\1/'What is option -E doing?
NKPTS
It's neither defined by POSIX nor available in my version of sed.
(I suppose it makes the regexp meta-character escapes unnecessary,
and you instead would have to escape the meta-characters that are
used literally?)
On Sunday, March 20, 2022 at 9:44:23 AM UTC+8, Janis Papanagnou wrote:
On 18.03.2022 03:39, hongy...@gmail.com wrote:
On Friday, March 18, 2022 at 10:29:11 AM UTC+8, Janis Papanagnou wrote:Maybe clearer but obviously non-standard.
On 15.03.2022 03:23, hongy...@gmail.com wrote:
I want to find some alternative regexp patterns of my following operation:Avoid non-standard options (like grep's -P and -o), use standard tools
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | grep -Po '::[ ]*\K[^ ]+'
NKPTS
Any hints?
sed 's/.*::[ ]*\([^ ]\+\).*/\1/'
Thank you. The following version is clearer:
What is option -E doing?
$ echo 'public , save :: NKPTS ! - max. no. of kpoints' | sed -E 's/.*::[ ]*([^ ]+).*/\1/'
NKPTS
It's neither defined by POSIX nor available in my version of sed.
(I suppose it makes the regexp meta-character escapes unnecessary,
and you instead would have to escape the meta-characters that are
used literally?)
$ sed --help | grep -A2 -- '^[ ]*-E'
-E, -r, --regexp-extended
use extended regular expressions in the script
(for portability use POSIX -E).
$ sed --version
sed (GNU sed) 4.7
(Janis, what version of sed are you using?)
The enhancement request was submitted in 2011. The resolution is
"Accepted As Marked" and the status is "Applied", so I'm not entirely
sure what's going on. But in any case, The Open Group Base
Specifications Issue 7, 2018 edition doesn't mention "-E".
Keith Thompson wrote:
The enhancement request was submitted in 2011. The resolution is
"Accepted As Marked" and the status is "Applied", so I'm not entirely
sure what's going on. But in any case, The Open Group Base
Specifications Issue 7, 2018 edition doesn't mention "-E".
"Applied" means the edits have been made in the (troff) source of SUS.
In this specific case the edit was applied long enough ago that it
was included in the latest draft (2.1) of the next revision (Issue 8)
that was made available to reviewers in August 2021.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 443 |
Nodes: | 16 (2 / 14) |
Uptime: | 67:56:46 |
Calls: | 9,194 |
Calls today: | 10 |
Files: | 13,477 |
Messages: | 6,052,509 |