Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8081445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T16:43:54+00:00 2026-06-05T16:43:54+00:00

I have a sed(1) script doing many step-by-step transformations (substitutions) of a given input

  • 0

I have a sed(1) script doing many step-by-step transformations (substitutions) of a given
input stream that works well for the task itself. Now, what I need is to limit these
operatations to/inside “/” quoted multiline string only. The input stream is simple text
file containing multiline “/” quoted strings I need to perform my
sequence of s/// commands on. I know it’s quite hard to achieve that in sed(1) but
I still hope anybody knows how to. Script I have so far (but works correctly on single line basis) follows.

The sed(1) “tricks” are at the beginning and at the
end of the script, the rest is just sequence of s///s expressions and it is correct:

#! /bin/sed -f

# Convert /PinYin/ strings to /UTF-8 PinYin/ strings.
# Notice: /PinYin/ strings MUST NOT be multiline (to do).

/\/.*\// {

    s/\//\
/g

:a 
    h
    s/[^\n]*\n//
    s/\n.*//

    s/ang1/||aq||ng/g
    s/ang2/||aw||ng/g
    s/ang3/||ae||ng/g
    s/ang4/||ar||ng/g

    s/eng1/||eq||ng/g
    s/eng2/||ew||ng/g
    s/eng3/||ee||ng/g
    s/eng4/||er||ng/g

    s/ing1/||iq||ng/g
    s/ing2/||iw||ng/g
    s/ing3/||ie||ng/g
    s/ing4/||ir||ng/g

    s/ong1/||oq||ng/g
    s/ong2/||ow||ng/g
    s/ong3/||oe||ng/g
    s/ong4/||or||ng/g

    s/an1/||aq||n/g
    s/an2/||aw||n/g
    s/an3/||ae||n/g
    s/an4/||ar||n/g

    s/en1/||eq||n/g
    s/en2/||ew||n/g
    s/en3/||ee||n/g
    s/en4/||er||n/g

    s/in1/||iq||n/g
    s/in2/||iw||n/g
    s/in3/||ie||n/g
    s/in4/||ir||n/g

    s/un1/||uq||n/g
    s/un2/||uw||n/g
    s/un3/||ue||n/g
    s/un4/||ur||n/g

    s/ao1/||aq||o/g
    s/ao2/||aw||o/g
    s/ao3/||ae||o/g
    s/ao4/||ar||o/g

    s/ou1/||oq||u/g
    s/ou2/||ow||u/g
    s/ou3/||oe||u/g
    s/ou4/||or||u/g

    s/ai1/||aq||i/g
    s/ai2/||aw||i/g
    s/ai3/||ae||i/g
    s/ai4/||ar||i/g

    s/ei1/||eq||i/g
    s/ei2/||ew||i/g
    s/ei3/||ee||i/g
    s/ei4/||er||i/g

    s/a1/||aq||/g
    s/a2/||aw||/g
    s/a3/||ae||/g
    s/a4/||ar||/g

    s/a1/||aq||/g
    s/a2/||aw||/g
    s/a3/||ae||/g
    s/a4/||ar||/g

    s/er2/||ew||r/g
    s/er3/||ee||r/g
    s/er4/||er||r/g

    s/lyue/l||u:||e/g
    s/nyue/n||u:||e/g

    s/e1/||eq||/g
    s/e2/||ew||/g
    s/e3/||ee||/g
    s/e4/||er||/g

    s/o1/||oq||/g
    s/o2/||ow||/g
    s/o3/||oe||/g
    s/o4/||or||/g

    s/i1/||iq||/g
    s/i2/||iw||/g
    s/i3/||ie||/g
    s/i4/||ir||/g

    s/nyu3/n||u:e||/g

    s/lyu/l||u:||/g

    s/u:1/||u:q||/g
    s/u:2/||u:w||/g
    s/u:3/||u:e||/g
    s/u:4/||u:r||/g
    s/u:0/||u:s||/g

    s/u1/||uq||/g
    s/u2/||uw||/g
    s/u3/||ue||/g
    s/u4/||ur||/g

    s/||aq||/ā/g
    s/||aw||/á/g
    s/||ae||/ǎ/g
    s/||ar||/à/g

    s/||eq||/ē/g
    s/||ew||/é/g
    s/||ee||/ě/g
    s/||er||/è/g

    s/||iq||/ī/g
    s/||iw||/í/g
    s/||ie||/ǐ/g
    s/||ir||/ì/g

    s/||oq||/ō/g
    s/||ow||/ó/g
    s/||oe||/ǒ/g
    s/||or||/ò/g

    s/||uq||/ū/g
    s/||uw||/ú/g
    s/||ue||/ǔ/g
    s/||ur||/ù/g

    s/||u:q||/ǖ/g
    s/||u:w||/ǘ/g
    s/||u:e||/ǚ/g
    s/||u:r||/ǜ/g
    s/||u:s||/ü/g

    G
    s/\([^\n]*\)\n\([^\n]*\)\n[^\n]*\n/\2\/\1\//
    /\n/ b a
}

Sample input:

Some text containing for instance Chinese greeting /ni3
hao3/ and perhaps some other Chinese sentence, say /ni2
kan4, .../

Expected output:

Some text containing for instance Chinese greeting /nǐ
hǎo/ and perhaps some other Chinese sentence, say /ní
kàn, .../

My knowledge of sed(1) is not as powerful to solve this problem on my own. Therefor I ask you for helping me with it. Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T16:43:55+00:00Added an answer on June 5, 2026 at 4:43 pm

    Finally it was quite easy to achieve with only a small improvement to the original sed(1) code. Perhaps it could be done somehow better but while having conversion code working in “line scope” I managed to let it be (with minor improvements that are not important to the essence of this question) and rather read whole file in the pattern space, replace newlines with \001 (^A) characters, let the original code do it’s work and in the end replace the ^A characters back to newlines. Here it is:

    #! /bin/sed -f
    
    #  pinyin2utf8.sed -- Convert US-ASCII Pinyin to UTF-8
    #  Copyright (C) 2012 Matous J. Fialka, <http://mjf.cz/>
    #  Released under the terms of The MIT License
    #
    #  DESCRIPTION
    #   Script converts all occurences of US-ASCII encoded Pinyin text
    #   enclosed by the solidus characters pairs to UTF-8 encoded text.
    #
    #  USAGE
    #   pinyin2utf8.sed filename [ > filename.out ]
    #
    #  WARNINGS
    #   Script contains the ^A control character, usually displayed as
    #   mentioned in most text editors, that can be usually reproduced
    #   by pressing ^V ^A key sequence. The ^A control characters thus
    #   MUST NOT occure in the input stream.  To find the sequences in
    #   the script lookup the y/// command in the code, please.
    #
    #   In the US-ASCII encoded Pinyin to UTF-8 Pinyin conversion code
    #   special delimiting sequences of left and right parentheses are
    #   used and those two delimiting sequences of left or righ parens
    #   SHOULD NOT be used in the input stream.
    
    : 0
    
    $! {
        N
        b 0
    }
    
    # HERE BE DRAGONS
    
    y/\n/^A/
    
    y/\//\
    /
    
    : a
    
    h
    
    s/[^\n]*\n//
    s/\n.*//
    
    # CONVERSION CODE BEGINNING
    
    s/ang1/(((aq)))ng/g
    s/ang2/(((aw)))ng/g
    s/ang3/(((ae)))ng/g
    s/ang4/(((ar)))ng/g
    s/eng1/(((eq)))ng/g
    s/eng2/(((ew)))ng/g
    s/eng3/(((ee)))ng/g
    s/eng4/(((er)))ng/g
    s/ing1/(((iq)))ng/g
    s/ing2/(((iw)))ng/g
    s/ing3/(((ie)))ng/g
    s/ing4/(((ir)))ng/g
    s/ong1/(((oq)))ng/g
    s/ong2/(((ow)))ng/g
    s/ong3/(((oe)))ng/g
    s/ong4/(((or)))ng/g
    
    s/an1/(((aq)))n/g
    s/an2/(((aw)))n/g
    s/an3/(((ae)))n/g
    s/an4/(((ar)))n/g
    s/en1/(((eq)))n/g
    s/en2/(((ew)))n/g
    s/en3/(((ee)))n/g
    s/en4/(((er)))n/g
    s/in1/(((iq)))n/g
    s/in2/(((iw)))n/g
    s/in3/(((ie)))n/g
    s/in4/(((ir)))n/g
    s/un1/(((uq)))n/g
    s/un2/(((uw)))n/g
    s/un3/(((ue)))n/g
    s/un4/(((ur)))n/g
    s/ao1/(((aq)))o/g
    s/ao2/(((aw)))o/g
    s/ao3/(((ae)))o/g
    s/ao4/(((ar)))o/g
    s/ou1/(((oq)))u/g
    s/ou2/(((ow)))u/g
    s/ou3/(((oe)))u/g
    s/ou4/(((or)))u/g
    s/ai1/(((aq)))i/g
    s/ai2/(((aw)))i/g
    s/ai3/(((ae)))i/g
    s/ai4/(((ar)))i/g
    s/ei1/(((eq)))i/g
    s/ei2/(((ew)))i/g
    s/ei3/(((ee)))i/g
    s/ei4/(((er)))i/g
    
    s/a1/(((aq)))/g
    s/a2/(((aw)))/g
    s/a3/(((ae)))/g
    s/a4/(((ar)))/g
    s/a1/(((aq)))/g
    s/a2/(((aw)))/g
    s/a3/(((ae)))/g
    s/a4/(((ar)))/g
    
    s/er2/(((ew)))r/g
    s/er3/(((ee)))r/g
    s/er4/(((er)))r/g
    
    s/lyue/l(((u:)))e/g
    s/nyue/n(((u:)))e/g
    
    s/e1/(((eq)))/g
    s/e2/(((ew)))/g
    s/e3/(((ee)))/g
    s/e4/(((er)))/g
    s/o1/(((oq)))/g
    s/o2/(((ow)))/g
    s/o3/(((oe)))/g
    s/o4/(((or)))/g
    s/i1/(((iq)))/g
    s/i2/(((iw)))/g
    s/i3/(((ie)))/g
    s/i4/(((ir)))/g
    
    s/nyu3/n(((u:e)))/g
    
    s/lyu/l(((u:)))/g
    
    s/u:1/(((u:q)))/g
    s/u:2/(((u:w)))/g
    s/u:3/(((u:e)))/g
    s/u:4/(((u:r)))/g
    s/u:0/(((u:s)))/g
    
    s/u1/(((uq)))/g
    s/u2/(((uw)))/g
    s/u3/(((ue)))/g
    s/u4/(((ur)))/g
    
    s/(((aq)))/ā/g
    s/(((aw)))/á/g
    s/(((ae)))/ǎ/g
    s/(((ar)))/à/g
    s/(((eq)))/ē/g
    s/(((ew)))/é/g
    s/(((ee)))/ě/g
    s/(((er)))/è/g
    s/(((iq)))/ī/g
    s/(((iw)))/í/g
    s/(((ie)))/ǐ/g
    s/(((ir)))/ì/g
    s/(((oq)))/ō/g
    s/(((ow)))/ó/g
    s/(((oe)))/ǒ/g
    s/(((or)))/ò/g
    s/(((uq)))/ū/g
    s/(((uw)))/ú/g
    s/(((ue)))/ǔ/g
    s/(((ur)))/ù/g
    
    s/(((u:q)))/ǖ/g
    s/(((u:w)))/ǘ/g
    s/(((u:e)))/ǚ/g
    s/(((u:r)))/ǜ/g
    s/(((u:s)))/ü/g
    
    # CONVERSION CODE END
    
    G
    
    s/\([^\n]*\)\n\([^\n]*\)\n[^\n]*\n/\2\/\1\//
    
    /\n/ b a
    
    # HERE BE DRAGONS
    
    y/^A/\
    /
    

    Sample input text:

    $ cat test.in
    ni3 hao3
    /ni3 hao3/
    ni3 hao3 /ni3 hao3/
    /ni3 hao3/ ni3 hao3
    ni3 hao3 /ni3 hao3/ ni3 hao3
    ni3 hao3 /ni3 hao3/ ni3 hao3 /ni3 hao3/
    /ni3 hao3/ ni3 hao3 /ni3 hao3/
    /ni3 hao3/ ni3 hao3 /ni3 hao3/ ni3 hao3
    ni3 hao3 /ni3 hao3/ ni3 hao3 /ni3 hao3/ ni3 hao3
    /ni3 hao3/ ni3 hao3 /ni3 hao3/ ni3 hao3 /ni3 hao3/
    
    ni3 hao3 /ni3
    hao3/ ni3 hao3
    
    /ni3 hao3
    ni3
    hao3
    ni3 hao3/ ni3 hao3
    

    Sample run:

    $ pinyin2utf8.sed test.in
    ni3 hao3
    /nǐ hǎo/
    ni3 hao3 /nǐ hǎo/
    /nǐ hǎo/ ni3 hao3
    ni3 hao3 /nǐ hǎo/ ni3 hao3
    ni3 hao3 /nǐ hǎo/ ni3 hao3 /nǐ hǎo/
    /nǐ hǎo/ ni3 hao3 /nǐ hǎo/
    /nǐ hǎo/ ni3 hao3 /nǐ hǎo/ ni3 hao3
    ni3 hao3 /nǐ hǎo/ ni3 hao3 /nǐ hǎo/ ni3 hao3
    /nǐ hǎo/ ni3 hao3 /nǐ hǎo/ ni3 hao3 /nǐ hǎo/
    
    ni3 hao3 /nǐ
    hǎo/ ni3 hao3
    
    /nǐ hǎo
    nǐ
    hǎo
    nǐ hǎo/ ni3 hao3
    

    It seems to work just fine (at least to suite my needs) and thus I consider this issue to be closed. Many thanks belongs to all people involved, especially Mr. Lev Levitsky!

    P.S.: I also placed the code here (GitHub) where you can track some possible future changes.

    P.S. 2: The ^A characters were lost while saving this answer. Now they are replaced with their ASCII representation here. You have to replace them to their binary representation (in vi(1) press ^V ^A in insert mode) or use the GitHub version instead.

    P.S. 3: I still feel the ^A “hack” as quite ugly. In case anybody knows to avoid it in this case while still having the middle conversion code as simple as it is now, please share your ideas.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem finding a sed script that works when the regex looks
I have inherited this sed script snippet that attempts to remove certain empty spaces:
I have a Ruby script that generates a sed command to replace some PHP
I have a sed script which will read in a file and, if a
I have am trying to use sed to get some info that is encoded
I have a blacklist.txt file that contains keywords I want to remove using sed.
I have a script that records files with UTF8 encoded names. However the script's
I have a BASH script which performs many actions on a file, for e.g.:
I have about 150 HTML files in a given directory that I'd like to
I have a Perl script that gives me a defined list of random numbers

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.