Substituição de padrão de correspondência de caso com sed

12

Eu tenho um código-fonte distribuído em vários arquivos.

  • Tem um padrão abcdef que eu preciso substituir por pqrstuvxyz .
  • O padrão pode ser Abcdef (caso de sentença) e precisa ser substituído por Pqrstuvxyz .
  • O padrão pode ser AbCdEf (alternar entre maiúsculas e minúsculas) e depois precisa ser substituído por PqRsTuVxYz .

Em suma, preciso corresponder ao caso do padrão de origem e aplicar o padrão de destino apropriado.

Como posso conseguir isso usando sed ou qualquer outra ferramenta?

    
por user1263746 20.04.2014 / 20:17

5 respostas

6

Solução portátil usando sed :

sed '
:1
/[aA][bB][cC][dD][eE][fF]/!b
s//\
&\
pqrstu\
PQRSTU\
/;:2
s/\n[[:lower:]]\(.*\n\)\(.\)\(.*\n\).\(.*\n\)/\
/;s/\n[^[:lower:]]\(.*\n\).\(.*\n\)\(.\)\(.*\n\)/\
/;t2
s/\n.*\n//;b1'

É um pouco mais fácil com o GNU sed:

search=abcdef replace=pqrstuvwx
sed -r ":1;/$search/I!b;s//\n&&&\n$replace\n/;:2
    s/\n[[:lower:]](.*\n)(.)(.*\n)/\l\n/
    s/\n[^[:lower:]](.*\n)(.)(.*\n)/\u\n/;t2
    s/\n.*\n(.*)\n//g;b1"

Usando &&& acima, reutilizamos o padrão de caso da string para o restante da substituição. Assim, ABcdef seria alterado para PQrstuVWx e AbCdEf para PqRsTuVwX . Altere para & para afetar apenas o caso dos 6 primeiros caracteres.

(note que ele pode não fazer o que você quer ou pode ter um loop infinito se a substituição estiver sujeita a substituição (por exemplo, se substituir foo por foo ou bcd por abcd )

    
por 20.04.2014 / 22:15
8

Solução portátil usando awk :

awk -v find=abcdef -v rep=pqrstu '{
  lwr=tolower($0)
  offset=index(lwr, tolower(find))

  if( offset > 0 ) {
    printf "%s", substr($0, 0, offset)
    len=length(find)

    for( i=0; i<len; i++ ) {
      out=substr(rep, i+1, 1)

      if( substr($0, offset+i, 1) == substr(lwr, offset+i, 1) )
        printf "%s", tolower(out)
      else
        printf "%s", toupper(out)
    }

    printf "%s\n", substr($0, offset+len)
  }
}'

Exemplo de entrada:

other abcdef other
other Abcdef other
other AbCdEf other

Exemplo de saída:

other pqrstu other
other Pqrstu other
other PqRsTu other

Atualizar

Como apontado nos comentários, o acima apenas substituirá a primeira instância de find em todas as linhas. Para substituir todas as instâncias:

awk -v find=abcdef -v rep=pqrstu '{
  input=$0
  lwr=tolower(input)
  offset=index(lwr, tolower(find))

  if( offset > 0 ) {
    while( offset > 0 ) {

      printf "%s", substr(input, 0, offset)
      len=length(find)

      for( i=0; i<len; i++ ) {
        out=substr(rep, i+1, 1)

        if( substr(input, offset+i, 1) == substr(lwr, offset+i, 1) )
          printf "%s", tolower(out)
        else
          printf "%s", toupper(out)
      }

      input=substr(input, offset+len)
      lwr=substr(lwr, offset+len)
      offset=index(lwr, tolower(find))
    }

    print input
  }
}'

Exemplo de entrada:

other abcdef other ABCdef other
other Abcdef other abcDEF
other AbCdEf other aBCdEf other

Exemplo de saída:

other pqrstu other PQRstu other
other Pqrstu other pqrSTU
other PqRsTu other pQRsTu other
    
por 20.04.2014 / 22:03
6

Você pode usar perl . Direto do faq - citando de perldoc perlfaq6 :

Como eu substituo maiúsculas e minúsculas no LHS enquanto preservo o caso no RHS?

Aqui está uma linda solução Perlish de Larry Rosler. Explora        propriedades de xor bit a bit em cadeias ASCII.

   $_= "this is a TEsT case";

   $old = 'test';
   $new = 'success';

   s{(\Q$old\E)}
   { uc $new | (uc $1 ^ $1) .
           (uc(substr $1, -1) ^ substr $1, -1) x
           (length($new) - length $1)
   }egi;

   print;

E aqui está como uma sub-rotina, modelada após o acima:

       sub preserve_case($$) {
               my ($old, $new) = @_;
               my $mask = uc $old ^ $old;

               uc $new | $mask .
                       substr($mask, -1) x (length($new) - length($old))
   }

       $string = "this is a TEsT case";
       $string =~ s/(test)/preserve_case($1, "success")/egi;
       print "$string\n";

Isto imprime:

           this is a SUcCESS case

Como alternativa, para manter o caso da palavra de substituição, se for        mais do que o original, você pode usar este código, por Jeff Pinyan:

   sub preserve_case {
           my ($from, $to) = @_;
           my ($lf, $lt) = map length, @_;

           if ($lt < $lf) { $from = substr $from, 0, $lt }
           else { $from .= substr $to, $lf }

           return uc $to | ($from ^ uc $from);
           }

Isso altera a frase para "este é um caso de SUcCess".

Só para mostrar que os programadores C podem escrever C em qualquer programação        idioma, se você preferir uma solução mais semelhante a C, o seguinte script        faz a substituição ter o mesmo caso, letra por letra, como o        original. (Também acontece de correr cerca de 240% mais lento que o Perlish        a solução é executada.) Se a substituição tiver mais caracteres do que        string sendo substituída, o caso do último caractere é usado para        o resto da substituição.

   # Original by Nathan Torkington, massaged by Jeffrey Friedl
   #
   sub preserve_case($$)
   {
           my ($old, $new) = @_;
           my ($state) = 0; # 0 = no change; 1 = lc; 2 = uc
           my ($i, $oldlen, $newlen, $c) = (0, length($old), length($new));
           my ($len) = $oldlen < $newlen ? $oldlen : $newlen;

           for ($i = 0; $i < $len; $i++) {
                   if ($c = substr($old, $i, 1), $c =~ /[\W\d_]/) {
                           $state = 0;
                   } elsif (lc $c eq $c) {
                           substr($new, $i, 1) = lc(substr($new, $i, 1));
                           $state = 1;
                   } else {
                           substr($new, $i, 1) = uc(substr($new, $i, 1));
                           $state = 2;
                   }
           }
           # finish up with any remaining new (for when new is longer than old)
           if ($newlen > $oldlen) {
                   if ($state == 1) {
                           substr($new, $oldlen) = lc(substr($new, $oldlen));
                   } elsif ($state == 2) {
                           substr($new, $oldlen) = uc(substr($new, $oldlen));
                   }
           }
           return $new;
   }
    
por 20.04.2014 / 21:09
5

Se você cortar a substituição para pqrstu , tente isto:

Entrada:

abcdef
Abcdef
AbCdEf
ABcDeF

Ouput:

$ perl -lpe 's/$_/$_^lc($_)^"pqrstu"/ei' file
pqrstu
Pqrstu
PqRsTu
PQrStU

Se você quiser substituir por prstuvxyz , pode ser isso:

$ perl -lne '@c=unpack("(A4)*",$_);
    $_ =~ s/$_/$_^lc($_)^"pqrstu"/ei;
    $c[0] =~ s/$c[0]/$c[0]^lc($c[0])^"vxyz"/ei;
    print $_,$c[0]' file
pqrstuvxyz
PqrstuVxyz
PqRsTuVxYz
PQrStUVXyZ

Não consigo encontrar nenhuma regra para mapear ABcDeF - > PQrStUvxyz .

    
por 20.04.2014 / 21:31
3

Algo parecido com isso faria o que você descreveu.

sed -i.bak -e "s/abcdef/pqrstuvxyz/g" \
 -e "s/AbCdEf/PqRsTuVxYz/g" \
 -e "s/Abcdef/Pqrstuvxyz/g" files/src
    
por 20.04.2014 / 20:42