= Search then Replace string.

        {CHAnge | CNX | IC | ICN} {(old-string) | * | \esc} {(new-string) | * | \esc | P'pics'}
                     [-g]
                     [all | next | + | prev | - | first | last]
                     [-nx] [.lab1 .lab2] [l-column | LM | RM [r-column]]

                    ( "\" = 0x5c = backslash )

            CHA     :All line search including excluded line. Case Sensitive.
            CNX     :All line search excluding excluded line. Case Sensitive.
            IC      :All line search including excluded line. Case In-Sensitive.
            ICN     :All line search excluding excluded line. Case In-Sensitive.
            old-string/new-string
                    :use quotation for space embedded or special
                     string as following.
                     ex.) "F '.exe'", "F 'set up'".
                     Word followed by "\n" means end-of-line matching.
                     ex.) "F word\n".
                     ex.) "C *= repstr 1 10 all"
                     *= replace the line if the specified column is sama as the above line.
                     Regular expression is supported with -g option.
            *       :search same string as previous search command.
                     Use it search changing new-string or direction
                     like as  c * new2 prev, c old2 * etc.
                     * can be used for also replacing string,
                     it mean same replacing string as previous ones.
                     When used with old-string "*ec"(UTF8 translation error search),
                     This new-string means to reset translation error status with code unchanged.
                     As a result, these code are translated to UTF8 if saved.
                     Error code is not reset is write back as it as.
                     ex) "c *ec * all"
            \esc    :same as \esc of FINd cmd.
                     Ctrl char specified on .ini Valid_Ctrl_char
                     parameter is inhibitted to input.
                     When replacing from Tab,Tab is replaced after
                     followed padding char is changed to space.
                     When replacing to Tab,old string is replaced to
                     one byte tab char,then following string is shift to
                     the next tab position.So,"c x \t" after "c \t x"
                     dose not back to original status.
            P'pics' :specifies char-class for each byte. See FINd cmd for special char susch as ".","@".
                     For new-string, following chars have special meaning.
                     Other chars than following 3 chars are used as replacing chars.
                     New-string length hove not to be same as old-string length.

                     "=" : no replace(keep char on old-string)
                     "<" : lowercase translation
                     ">" : uppercase translation
                     ex)  c AaBbCc P'<=>>=.Xy'
                          changes "AaBbCc" to "aaBBC.Xy".
            -g      :specifies old-string is regular expression. See FINd cmd for regular expression syntax.

            all     :change all old-string in the file.
            allkx   :all without revealing found word on excluded line.
            next    :search forward from cursor position.
            +       :same as next
            prev    :search backward from cursor position.
            -       :same as prev
            first   :search forward from start of the file.
            last    :search backward from end of the file.
            .lab1/2 :Limit search line range using a pair of label
                     on lineno column. line number may be used so as to
                     limit line range with no label on lineno column.
            l-column:left-most column of search range.
            r-column:right-most column of search range.
            LM      :search Left margin only.
            RM      :search Reft margin only.
            -nx     :search on displayed lines only(same as CNX/ICN)

            -Case sensitive search.
            -Use function key(F6/Shift+F6) to execute same change operation.
             Different from Find,it dose not re-change returning to top or
             bottom of file.
             If needed,use F5 to back around, then use F6.
            -Entering operand only and press function key,it start
             search and change(F6) or reverse search and change
             (Shift+F6).Command verb(only abridgement is allowed) also
             can be put on.
            -Tab and its following space is assumed same as space char.
            -Refer "About word" for how to specify string.
             (To delete word,enter like as CHA xxxx "".)
            -F5(Re-find) after Change is case sensitive.