RE: upper/lower case
| Newsgroups | gmane.editors.sed.user |
|---|---|
| Message-ID | <[email protected]> |
Greetings
Sorry, can't check with non-GNU sed. Without --regexp-extended
/^\([^;]*;\)\{2\}.*/{
h
s/^\([^;]*;\)\{2\}\([^;]\+\)\(;[^;]*\)*/\2/
s/[A-Z]\+/\L\u\0\E/g
H
x
s/^\(\([^;]*;\)\{2\}\)[^;]*\(;[^;]*\)*\n\(.*\)$/\1\4\3/
}
Best regards.
[Non-text portions of this message have been removed]