An A o An An?


21

In inglese, c'è la differenza divertente e semplice tra ane a: si usa anquando si precede una parola che inizia con un suono vocale, e aquando la parola inizia con un suono consonante.

Per semplicità in questa sfida, anprecede una parola che inizia con una vocale ( aeiou) e aprecede una parola che inizia con una consonante.

Ingresso

Una stringa composta solo da caratteri ASCII stampabili, che [?]appare in punti in cui è necessario scegliere di inserire ano a. [?]apparirà sempre prima di una parola. Puoi presumere che la frase sarà grammaticalmente corretta e formattata come al solito.

Produzione

La stringa di input con [?]sostituita con la parola appropriata ( ano a). Devi preoccuparti della capitalizzazione!

Quando capitalizzare

Scrivi in ​​maiuscolo una parola se è preceduta da nessun carattere (è la prima nell'input) o se è preceduta da una delle lettere .?!seguita da uno spazio.

Esempi

Input: Hello, this is [?] world!
Output: Hello, this is a world!

Input: How about we build [?] big building. It will have [?] orange banana hanging out of [?] window.
Output: How about we build a big building. It will have an orange banana hanging out of a window.

Input: [?] giant en le sky.
Output: A giant en le sky.

Input: [?] yarn ball? [?] big one!
Output: A yarn ball? A big one!

Input: [?] hour ago I met [?] European.
Output: A hour ago I met an European.

Input: Hey sir [Richard], how 'bout [?] cat?
Output: Hey sir [Richard], how 'bout a cat?

Questo è , quindi vince il codice più corto in byte!


Ok grazie. Possiamo supporre che nessun input abbia spazi extra tra la [?]e la parola?
DJMcMayhem

8
Un / an deve essere scritto in maiuscolo nel mezzo dell'input quando si trova all'inizio di una frase? ("Questo è [?] Test. [?] Test.") In tal caso, con quale punteggiatura può terminare una frase? Che dire delle frasi tra virgolette o parentesi? O abbreviazioni che terminano in un punto ("Ad esempio [?] Input così")? Le regole di capitalizzazione hanno molti casi particolari strani, quindi per favore sii molto esplicito su ciò che i nostri programmi fanno o non devono gestire.
DLosc,

1
Potresti chiarire quando capitalizzare? Il primo personaggio?
DJMcMayhem

31
Dovresti aggiungere il test case [?] hour ago I met [?] European.solo per far rabbrividire tutti.
Martin Ender,

1
Ora dobbiamo avere[?] hour ago I met [?] horse.
becher

Risposte:


6

V , 41 byte

ÍãÛ?Ý ¨[aeiou]©/an
ÍÛ?Ý/a
Í^aü[.!?] a/A

Provalo online! , che può essere comodamente utilizzato anche per verificare tutti i casi di test senza conteggi di byte aggiuntivi.

Questo sfrutta la "Regex Compression" di V. Utilizza molti caratteri non stampabili, quindi ecco un hexdump:

0000000: cde3 db3f dd85 20a8 5b61 6569 6f75 5da9  ...?.. .[aeiou].
0000010: 2f61 6e0a cddb 3fdd 2f61 0acd 5e61 fc5b  /an...?./a..^a.[
0000020: 2e21 3f5d 2093 612f 41                   .!?] .a/A

Purtroppo, OP detto "Tu non devi preoccuparti di capitalizzazione!" (enfasi la mia).
El'endia Starman,

1
@ El'endiaStarman Oh, l'ho letto male. Posso sistemarlo, ma non ho idea di cosa capitalizzare, poiché OP non ha specificato.
DJMcMayhem

@ El'endiaStarman Risolto ora.
DJMcMayhem

7

Perl, 48 byte

Salvato 1 byte grazie a Ton Hospel .

#!perl -p
s;\[\?];A.n x$'=~/^ [aeiou]/i^$"x/[^.?!] \G/;eg

Contando lo shebang come uno, l'input è preso dallo stdin.

Spiegazione

#!perl -p               # for each line of input, set $_, auto-print result

s;                      # begin regex substitution, with delimiter ;
\[\?]                   # match [?] literally, and replace with:
;
A.n x$'=~/^ [aeiou]/i   # 'A', concatenate with 'n' if post-match ($')
                        #   matches space followed by a vowel
^$"x/[^.?!] \G/         # if the match is preceded by /[^.?!] /, xor with a space
                        #   this will change An -> an

;eg                     # regex options eval, global

Esempio di utilizzo

$ echo Hello, this is [?] world! | perl a-an.pl
Hello, this is a world!

$ echo How about we build [?] big building. It will have [?] orange banana hanging out of [?] window. | perl a-an.pl
How about we build a big building. It will have an orange banana hanging out of a window.

$ echo [?] giant en le sky. [?] yarn ball? | perl a-an.pl
A giant en le sky. A yarn ball?

$ echo [?] hour ago I met [?] European. | perl a-an.pl
A hour ago I met an European.

2
Potresti spiegarlo, per favore?
sudee,

1
/[.?!]/Manca il supporto per la capitalizzazione seguita da spazio
Ton Hospel,

1
@TonHospel 10 ore fa, il problema non ha fatto menzione di questo.
primo

2
Ok, cambiare le specifiche al volo è così ingiusto. PS: Adoro usare \Gper andare indietro. PPS, un po 'più breve:s;\[\?];A.n x$'=~/^ [aeiou]/^$"x/[^.?!] \G/;eg
Ton Hospel,

1
@sudee aggiornato per includere spiegazioni.
primo

7

Rubino, 78 72 byte

->s{s.gsub(/(^|\. )?\K\[\?\]( [aeiou])?/i){"anAn"[$1?2:0,$2?2:1]+"#$2"}}

Ungolfed

def f(s)
    s.gsub(/(^|\. )?\[\?\]( [aeiou])?/i) do |m|
        capitalize = $1
        vowel = $2
        replacement = if vowel then
            capitalize ? "An" : "an"
        else
            capitalize ? "A" : "a"
        end
        m.sub('[?]', replacement)
    end
end

2
"anAn"[...]è davvero intelligente. 👍🏻 Puoi salvare alcuni byte saltando l'interno sub:s.gsub(/(^|\. )?\K\[\?\] ([aeiou])?/i){"anAn"[$1?2:0,$2?2:1]+" #$2"}
Giordania,

6

PHP, 207 byte

foreach(explode("[?]",$s)as$i=>$b){$r=Aa[$k=0|!strstr(".!?",''==($c=trim($a))?".":$c[strlen($c)-1])].n[!preg_match("#^['\"´`\s]*([aeiou]|$)#i",$d=trim($b))];echo$i?$r.$b:$b;$a=$i?''==$d?a:$b:(''==$d?".":a);}

Mi piacciono le soluzioni più complete di volta in volta ...
ma devo ammettere che questo è un po 'eccessivo, anche se non è affatto finito.

Salva su file, esegui php <filename>con input da STDIN.

casi test

How about we build [?] big building ... with [?] orange banana hanging out of [?] window.
=>  How about we build a big building ... with an orange banana hanging out of a window.

Hello, this is [?] world!               =>  Hello, this is a world!
Should I use [?] '[?]' or [?] '[?]'?    =>  Should I use an 'an' or an 'a'?
[?] elephant in [?] swimsuit.           =>  An elephant in a swimsuit.

How I met your moth[?].                 =>  How I met your motha.
b[?][?][?] short[?]ge!                  =>  banana shortage!

abbattersi

foreach(explode("[?]",$s)as$i=>$b)
{
    $r=
        // lookbehind: uppercase if the end of a sentence precedes
        Aa[$k=0|!strstr(".!?",''==($c=trim($a))?".":$c[strlen($c)-1])]
        .
        // lookahead: append "n" if a vowel follows (consider quote characters blank)
        n[!preg_match("#^['\"´`\s]*([aeiou]|$)#i",$d=trim($b))]
    ;
    // output replacement and this part
    echo$i?$r.$b:$b;
    // prepare previous part for next iteration
    $a=$i               // this part was NOT the first:
        ?   ''==$d
            ? a             // if empty -> a word ($r from the previous iteration)
            : $b            // default: $b
        :  (''==$d      // this WAS the first part:
            ? "."           // if empty: end of a sentence (= uppercase next $r)
            : a             // else not
        )
    ;
    // golfed down to `$a=!$i^''==$d?a:($i?$b:".");`
}

3
Voto per "carenza di banane"! LOL
MonkeyZeus,

@MonkeyZeus: prova[?][?][?]s [?]lert!
Tito

Tutto quello che posso immaginare è un Donkey Kong, il cuore spezzato, preoccupato per la carenza ora :(
MonkeyZeus,

5

Minkolang 0,15 , 75 byte

od4&r$O."]?["30$Z3&00w4X"Aa"I2-"Aa ."40$Z,*2&$rxr$O" aeiou"od0Z1=3&"n"r5X$r

Provalo qui!

Spiegazione

od                                                                    Take character from input and duplicate (0 if input is empty)
  4&                                                                  Pop top of stack; jump 4 spaces if not 0
    r$O.                                                              Reverse stack, output whole stack as characters, and stop.

    "]?["                                                             Push "[?]" on the stack
         30$Z                                                         Pop the top 3 items and count its occurrences in the stack
              3&                                                      Pop top of stack; jump 3 spaces if not 0
                00w                                                   Wormhole to (0,0) in the code box

                3X                                                    Dump the top 3 items of stack
                  "Aa"                                                Push "aA"
                      I2-                                             Push the length of stack minus 2
                         "Aa ."40$Z,                                  Push ". aA" and count its occurrences, negating the result
                                    *                                 Multiply the top two items of the stack
                                     2&$r                             Pop top of stack and swap the top two items if 0
                                         x                            Dump top of stack
                                          r                           Reverse stack
                                           $O                         Output whole stack as characters
                                             " aeiou"                 Push a space and the vowels
                                                     od               Take a character from input and duplicate
                                                       0Z             Pop top of stack and count its occurrences in the stack (either 1 or 2)
                                                         1=           1 if equal to 1, 0 otherwise
                                                           3&         Pop top of stack; jump 3 spaces if not 0
                                                             "n"      Push "n" if top of stack is 0

                                                             r        Reverse stack
                                                              5X      Dump top five items of stack
                                                                $r    Swap top two items of stack

Si noti che poiché Minkolang è toroidale, quando il contatore del programma si sposta dal bordo destro, ricompare a sinistra. Certamente golfable, ma poiché ho dovuto aggiungere 21 byte a causa delle specifiche, potrei non provare.


6
Sono l'unico che vuole andare a giocare a excitebike dopo aver letto quella spiegazione?
Magic Octopus Urn,

3

JavaScript (ES6), 90 86 87 85

Modifica ancora una volta poiché le specifiche per le maiuscole sono cambiate (ora più sensato)

Modifica di nuovo 1 byte salva thx @Huntro

Modifica altri 2 byte per gestire le virgolette e simili, come sottolineato da IsmaelMiguel (anche se non so se è richiesto da op). Si noti che in precedenza avevo contato 86 byte ma erano 85

Cercare di seguire la regola di capitalizzazione dichiarata nell'evento commenti se è incompleta (almeno)

x=>x.replace(/([^!?.] )?\[\?](\W*.)/g,(a,b,c)=>(b?b+'a':'A')+(/[aeiou]/i.test(c)?'n'+c:c))

Test

f=x=>x.replace(/([^!?.] )?\[\?](\W*.)/g,(a,b,c)=>(b?b+'a':'A')+(/[aeiou]/i.test(c)?'n'+c:c))

function go() {
  var i=I.value, o=f(i)
  O.innerHTML = '<i>'+i+'</i>\n<b>'+o+'</b>\n\n'+O.innerHTML 
}

go()
#I { width:80% }
<input value='How about we build [?] big building. It will have [?] orange banana hanging out of [?] window.' id=I><button onclick='go()'>GO</button><pre id=O></pre>


Non dovrei [?][?]dare Ana? E non dovrebbe [?][?] a.produrre Ana a.?
Ismael Miguel,

@IsmaelMiguel Non capisco esattamente cosa intendi, ma comunque[?] will always appear before a word. You can assume that the sentence will be grammatically correct and formatted like normal.
edc65

Capito, ma il tuo codice sta dando risultati strani per [?] "[?]".( An "A", le virgolette sono irrilevanti) e per [?] "A".(funziona bene per [?] A.).
Ismael Miguel,

@IsmaelMiguel [?] "[?]"non è un input valido. [?] will always appear before a word e "[?]" non è una parola.
edc65,

2
La fuga del secondo ]non è necessaria. /(\w )?\[\?](\W*.)/g
Huntro,

2

Lotto, 136 byte

@set/ps=
@for %%v in (a e i o u)do @call set s=%%s:[?] %%v=an %%v%%
@set s=%s:[?]=a%
@if %s:~0,1%==a set s=A%s:~1%
@echo %s:. a=. A%

Accetta una riga di input su STDIN.


2

PHP, 100 92 byte

<?=preg_filter(["/\[\?]\K(?= [aeiou])/i","/([.?!] |^)\K\[\?]/","/\[\?]/"],[n,A,a],$argv[1]);

È stato possibile approfondire ulteriormente le espressioni regolari.

Dà un avviso su una costante indefinita ma funziona ancora.

Modifica: 8 byte salvati grazie a primo


Dovrebbe anche essere possibile ridurre l'array di sostituzione [n,A,a]utilizzando le asserzioni di ricerca ( \Ke (?= )).
primo

2

Python 3.5.1, 153 147 124 byte

*s,=input().replace('[?]','*');print(*[('a','A')[i<1or s[i-2]in'.?!']+'n'*(s[i+2]in 'aeiouAEIOU')if c=='*'else c for i,c in enumerate(s)],sep='')

Input:

[?] apple [?] day keeps the doctor away. [?] lie.

Produzione :

An apple a day keeps the doctor away. A lie.

Versione 123 byte: non gestisce la regola di capitalizzazione.

s=list(input().replace('[?]','*'));print(*['a'+'n'*(s[i+2]in 'aeiouAEIOU')if c=='*'else c for i,c in enumerate(s)],sep='')

Ideone esso!


1
Benvenuti in Codegolf. Puoi usarlo ;e giocare a golf.
ABcDexter,

1
m.start() fordovrebbe essere m.start()for, s[i+2] in 'aeiouAEIOU'dovrebbe essere s[i+2]in'aeiouAEIOU'. Una semplice rasatura di -3 byte dovuta allo spazio bianco.
Erik the Outgolfer,

1
('an','a')[s[i+2]in'aeiouAEIOU']è invertito, è possibile utilizzare 'a'+'n'*(s[i+2]in'aeiouAEIOU')per risolverlo e salvare 2 byte. Qui puoi trovare molti consigli per giocare a golf .
Rod,

1
Questa community è così adorabile, visto quante persone sono disposte ad aiutare un nuovo arrivato e fornire consigli sul golf!
yo'

1
Caspita enumerate(). Grazie @chepner.
Gurupad Mamadapur,

2

Java, 180 178 byte

Il mio primo post qui, ho usato una parte del post di Kevin Cruijssen ma, con un approccio diverso, mi ha aiutato a ridurlo un po 'di più, grazie a lui!

String c(String s){String x[]=s.split("\\[\\?]",2),r=x[0];return x.length>1?r+(r.matches("(.+[.!?] )|(^)$")?"A":"a")+("aeiouAEIOU".contains(""+x[1].charAt(1))?"n":"")+c(x[1]):r;}

Qui è ungolfed:

static String c(String s) {
        String x[] = s.split("\\[\\?\\]", 2), r = x[0];
        return x.length > 1 ? r + (r.matches("(.+[.!?] )|(^)$") ? "A" : "a")
                + ("aeiouAEIOU".contains("" + x[1].charAt(1)) ? "n" : "") + c(x[1]) : r;
    }

E il risultato

Una semplice spiegazione, utilizzo un approccio ricorsivo per trovare tutti [?] .

Non sono riuscito a trovare un modo per utilizzare le partite con maiuscole e minuscole (non sono sicuro che sia possibile).

178bytes: Grazie a Martin Ender!


1
Benvenuti in PPCG! Non penso che tu debba sfuggire alla ]tua regex.
Martin Ender,

Hai ragione, è sufficiente solo l'apertura, grazie
AxelH,

2

05AB1E , 38 36 35 byte

2FžNžM‚NèSðì…[?]©ìDu«D®'a'nN׫::}.ª

Provalo online o verifica tutti i casi di test .

Spiegazione:

2F            # Loop 2 times:
  žN          #  Push consonants "bcdfghjklmnpqrstvwxyz"
  žM          #  Push vowels "aeiou"
             #  Pair them together into a list
     Nè       #  And use the loop-index to index into this pair
  S           #  Convert this string to a list of characters
   ðì         #  Prepend a space in front of each character
     …[?]     #  Push string "[?]
         ©    #  Store it in variable `®` (without popping)
          ì   #  And prepend it in front of each string in the list as well
  }D          #  Then duplicate the list
    u         #  Uppercase the characters in the copy
     «        #  And merge the two lists together
              #   i.e. for the vowel-iteration we'd have ["[?] a","[?] e","[?] i","[?] o",
              #    "[?] u","[?] A","[?] E","[?] I","[?] O","[?] U"]
   D          #  Duplicate it
    ®         #  Push "[?]" from variable `®`
     'a      '#  Push "a"
       'n    '#  Push "n"
         N×   #  Repeated the 0-based index amount of times (so either "" or "n")
           «  #  And append it to the "a"
    :         #  Replace all "[?]" with "an"/"a" in the duplicated list
     :        #  And then replace all values of the lists in the (implicit) input-string
 }.ª          #  After the loop: sentence-capitalize everything (which fortunately retains
              #  capitalized words in the middle of sentences, like the "European" testcase)
              # (and after the loop the result is output implicitly)

1
C'è un piccolo bug in esso. Fa in maiuscolo ogni parola dopo una "an". Ad esempio "[?] Orange" diventa "an Orange". Sembra funzionare, se aggiungi un ]dopo il::
Dorian

@Dorian Woops .. L'ho rimosso }più tardi perché pensavo che avrebbe salvato un byte, ma hai davvero ragione che fallisce per i [?] vowelcasi .. Grazie per avermelo fatto notare!
Kevin Cruijssen,

1

C #, 204 235 byte

string n(string b){for(int i=0;i<b.Length;i++){if(b[i]=='['){var r="a";r=i==0||b[i-2]=='.'?"A":r;r=System.Text.RegularExpressions.Regex.IsMatch(b[i+4].ToString(),@"[aeiouAEIOU]")?r+"n":r;b=b.Insert(i+3,r);}}return b.Replace("[?]","");}

Programma completo non golfato:

using System;

class a
{
    static void Main()
    {
        string s = Console.ReadLine();
        a c = new a();
        Console.WriteLine(c.n(s));
    }

    string n(string b)
    {
        for (int i = 0; i < b.Length; i++)
        {
            if (b[i] == '[')
            {
                var r = "a";
                r = i == 0 || b[i - 2] == '.' ? "A" : r;
                r = System.Text.RegularExpressions.Regex.IsMatch(b[i + 4].ToString(), @"[aeiouAEIOU]") ? r + "n" : r;
                b = b.Insert(i + 3, r);
            }
        }
        return b.Replace("[?]", "");
    }
}

Sono sicuro che questo potrebbe essere migliorato, specialmente la parte Regex, ma al momento non riesco a pensare a nulla.


funziona senza le importazioni?
gatto,

Spiacenti, ho dimenticato di includere l'importazione regex nel conteggio.
Yodle,

1
Il codice golf dovrebbe essere eseguito così com'è in qualsiasi formato - se non viene eseguito senza l'importazione regex, anche l'importazione regex dovrebbe andare nel codice golf
cat

Va bene, grazie. Sto ancora cercando esattamente come rispondere. Il conteggio e la risposta ora includono System.Text.RegularExpressions.
Yodle,

Ora sembra buono. :) Puoi anche controllare Code Golf Meta e il tag faq lì.
gatto

1

Java 7, 239 214 213 byte

String c(String s){String x[]=s.split("\\[\\?\\]"),r="";int i=0,l=x.length-1;for(;i<l;r+=x[i]+(x[i].length()<1|x[i].matches(".+[.!?] $")?65:'a')+("aeiouAEIOU".contains(x[++i].charAt(1)+"")?"n":""));return r+x[l];}

Casi non testati e test:

Provalo qui.

class M{
  static String c(String s){
    String x[] = s.split("\\[\\?\\]"),
           r = "";
    int i = 0,
        l = x.length - 1;
    for (; i < l; r += x[i]
                     + (x[i].length() < 1 | x[i].matches(".+[.!?] $") 
                        ? 65
                        : 'a')
                     + ("aeiouAEIOU".contains(x[++i].charAt(1)+"")
                        ? "n"
                        : ""));
    return r + x[l];
  }

  public static void main(String[] a){
    System.out.println(c("Hello, this is [?] world!"));
    System.out.println(c("How about we build [?] big building. It will have [?] orange banana hanging out of [?] window."));
    System.out.println(c("[?] giant en le sky."));
    System.out.println(c("[?] yarn ball? [?] big one!"));
    System.out.println(c("[?] hour ago I met [?] European. "));
    System.out.println(c("Hey sir [Richard], how 'bout [?] cat?"));
    System.out.println(c("[?] dog is barking. [?] cat is scared!"));
  }
}

Produzione:

Hello, this is a world!
How about we build a big building. It will have an orange banana hanging out of a window.
A giant en le sky.
A yarn ball? A big one!
A hour ago I met an European. 
Hey sir [Richard], how 'bout a cat?
A dog is barking. A cat is scared!

Ho provato a utilizzare una soluzione ricorsiva,
finisco

@AxelH Potresti forse pubblicarlo su ideone e link qui? Insieme potremmo individuare qualcosa per il golf. ;)
Kevin Cruijssen,

Eccolo ideone.com/z7hlVi , ho trovato un approccio migliore rispetto isEmptyall'uso di regex ^$. Credo di finire con 202;)
AxelH,

@AxelH Ah bello. Hmm, conto 195 byte anziché 202? A proposito, puoi giocare a 180 facendo un ritorno diretto con un se-else ternario: String c(String s){String x[]=s.split("\\[\\?\\]",2),r=x[0];return x.length>1?r+(r.matches("(.+[.!?] )|(^)$")?"A":"a")+("aeiouAEIOU".contains(""+x[1].charAt(1))?"n":"")+c(x[1]):r;}quindi decisamente più breve della mia risposta in loop. :)
Kevin Cruijssen,

Oh sì, riesco a mettere il blocco if in una riga alla fine, ho dimenticato di sostituirlo. Grazie;
AxelH,

1

Racchetta 451 byte (senza regex)

È ovviamente una risposta lunga ma sostituisce anche a e a con la maiuscola:

(define(lc sl item)(ormap(lambda(x)(equal? item x))sl))
(define(lr l i)(list-ref l i))(define(f str)(define sl(string-split str))
(for((i(length sl))#:when(equal?(lr sl i)"[?]"))(define o(if(lc(string->list"aeiouAEIOU")
(string-ref(lr sl(add1 i))0))#t #f))(define p(if(or(= i 0)(lc(string->list".!?")
(let((pr(lr sl(sub1 i))))(string-ref pr(sub1(string-length pr))))))#t #f))
(set! sl(list-set sl i(if o(if p"An""an")(if p"A""a")))))(string-join sl))

test:

(f "[?] giant en le [?] sky.")
(f "[?] yarn ball?")
(f "[?] hour ago I met [?] European. ")
(f "How about we build [?] big building. It will have [?] orange banana hanging out of [?] window.")
(f "Hello, this is [?] world!")

Produzione:

"A giant en le a sky."
"A yarn ball?"
"A hour ago I met an European."
"How about we build a big building. It will have an orange banana hanging out of a window."
"Hello, this is a world!"

Versione dettagliata:

(define(contains sl item)
  (ormap(lambda(x)(equal? item x))sl))

(define(lr l i)
  (list-ref l i))

(define(f str)
  (define sl(string-split str))
  (for((i(length sl))#:when(equal?(lr sl i)"[?]"))
    (define an   ; a or an
      (if(contains(string->list "aeiouAEIOU")
                  (string-ref(lr sl(add1 i))0))
         #t #f ))
    (define cap   ; capital or not
      (if(or(= i 0)(contains(string->list ".!?")
                            (let ((prev (lr sl(sub1 i)))) (string-ref prev
                                       (sub1(string-length prev))))))
         #t #f))
    (set! sl(list-set sl i (if an (if cap "An" "an" )
                                 (if cap "A" "a")))))
  (string-join sl))

Yay per la racchetta! Vedi anche Suggerimenti per giocare a golf in Racket / Scheme
cat

È un linguaggio eccellente, anche se non pensato per il golf.
rnso

1

J , 113 byte

[:;:inv 3(0 2&{(((('aA'{~[)<@,'n'#~])~('.?!'e.~{:))~('AEIOUaeiou'e.~{.))&>/@[^:(<@'[?]'=])1{])\' 'cut' . '([,~,)]

Provalo online!

Vergogna vergogna!


1

Retina , 66 60 byte

i`\[\?\]( ([aeiou]?)[a-z&&[^aeiou])
a$.2*n$1
(^|[.?!] )a
$1A

Provalo online.

Spiegazione:

Esegui una ricerca senza distinzione tra maiuscole e minuscole [?]seguita da una vocale o consonante, in cui la vocale opzionale viene salvata nel gruppo di acquisizione 2 e l'intera corrispondenza nel gruppo di acquisizione 1:

i`\[\?\]( ([aeiou]?)[a-z&&[^aeiou])

Sostituiscilo con un a, seguito dalla lunghezza del secondo gruppo di n(quindi 0 o 1 n), seguito dalle lettere del gruppo di acquisizione 1:

a$.2*n$1

Quindi abbina an aall'inizio della stringa o dopo uno di .?!più uno spazio:

(^|[.?!] )a

E maiuscola che A, senza rimuovere gli altri caratteri del gruppo di acquisizione 1:

$1A

1

Java (JDK) , 154 byte

s->{String v="(?= [aeiou])",q="(?i)\\[\\?]",b="(?<=^|[?.!] )";return s.replaceAll(b+q+v,"An").replaceAll(q+v,"an").replaceAll(b+q,"A").replaceAll(q,"a");}

Provalo online!

Spiegazione:

s->{
    String v="(?= [aeiou])",          // matches being followed by a vowel
    q="(?i)\\[\\?]",                  // matches being a [?]
    b="(?<=^|[?.!] )";                // matches being preceded by a sentence beginning
    return s.replaceAll(b+q+v,"An")   // if beginning [?] vowel, you need "An"
        .replaceAll(q+v,"an")         // if           [?] vowel, you need "an"
        .replaceAll(b+q,"A")          // if beginning [?]      , you need "A"
        .replaceAll(q,"a");}          // if           [?]      , you need "a"

1

C (gcc) , 225 207 202 201 byte

Grazie a ceilingcat per -24 byte

#define P strcpy(f+d,index("!?.",i[c-2])+!c?
c;d;v(i,g,f)char*i,*g,*f;{for(d=0;i[c];c++,d++)strcmp("[?]",memcpy(g,i+c,3))?f[d]=i[c]:(index("aeiouAEIOU",i[c+4])?P"An ":"an "),d++:P"A ":"a "),d++,c+=3);}

Provalo online!


0

Groovy, 73 162 byte

def a(s){s.replaceAll(/(?i)(?:(.)?( )?)\[\?\] (.)/){r->"${r[1]?:''}${r[2]?:''}${'.?!'.contains(r[1]?:'.')?'A':'a'}${'aAeEiIoOuU'.contains(r[3])?'n':''} ${r[3]}"}}

modifica: accidenti, la capitalizzazione ha completamente complicato tutto qui


Questo diventa maiuscolo all'inizio di una frase?
Tito,

no. Vedo ora che la descrizione della sfida è stata modificata nel frattempo ...
norganos,

"Dammi [?] Ora con [?] Aprire la porta della cantina." Rompe il tuo codice: groovyconsole.appspot.com/edit/5159915056267264
Magic Octopus Urn

la descrizione della sfida è ancora del tutto incoerente. per prima cosa dice "Devi preoccuparti della capitalizzazione!" e subito dopo ci sono le regole per la capitalizzazione
norganos,

È coerente. Devi preoccuparti della capitalizzazione (cioè devi gestirla). Quindi spiega come
edc65,

0

C # 209 byte

string A(string b){var s=b.Split(new[]{"[?]"},0);return s.Skip(1).Aggregate(s[0],(x,y)=>x+(x==""||(x.Last()==' '&&".?!".Contains(x.Trim().Last()))?"A":"a")+("AEIOUaeiou".Contains(y.Trim().First())?"n":"")+y);}

formattato

string A(string b)
{
    var s = b.Split(new[] { "[?]" }, 0);
    return s.Skip(1).Aggregate(s[0], (x, y) => x + (x == "" || (x.Last() == ' ' && ".?!".Contains(x.Trim().Last())) ? "A" : "a") + ("AEIOUaeiou".Contains(y.Trim().First()) ? "n" : "") + y);
}

0

Perl 6 , 78 byte

{S:i:g/(^|<[.?!]>' ')?'[?] '(<[aeiou]>?)/{$0 xx?$0}{<a A>[?$0]}{'n'x?~$1} $1/}

Spiegazione:

{
  S
    :ignorecase
    :global
  /
    ( # $0
    | ^             # beginning of line
    | <[.?!]> ' '   # or one of [.?!] followed by a space
    ) ?             # optionally ( $0 will be Nil if it doesn't match )

    '[?] '          # the thing to replace ( with trailing space )

    ( # $1
      <[aeiou]> ?   # optional vowel ( $1 will be '' if it doesn't match )
    )

  /{
    $0 xx ?$0      # list repeat $0 if $0
                   # ( so that it doesn't produce an error )
  }{
    < a A >[ ?$0 ] # 'A' if $0 exists, otherwise 'a'
  }{
    'n' x ?~$1     # 'n' if $1 isn't empty
                   # 「~」 turns the Match into a Str
                   # 「?」 turns that Str into a Bool
                   # 「x」 string repeat the left side by the amount of the right

  # a space and the vowel we may have borrowed
  } $1/
}

Test:

#! /usr/bin/env perl6
use v6.c;
use Test;

my &code = {S:i:g/(^|<[.?!]>' ')?'[?] '(<[aeiou]>?)/{<a A>[?$0]~('n'x?~$1)} $1/}

my @tests = (
  'Hello, this is [?] world!'
  => 'Hello, this is a world!',

  'How about we build [?] big building. It will have [?] orange banana hanging out of [?] window.'
  => 'How about we build a big building. It will have an orange banana hanging out of a window.',

  '[?] giant en le sky.'
  => 'A giant en le sky.',

  '[?] yarn ball?'
  => 'A yarn ball?',

  '[?] hour ago I met [?] European.'
  => 'A hour ago I met an European.',

  "Hey sir [Richard], how 'bout [?] cat?"
  => "Hey sir [Richard], how 'bout a cat?",
);

plan +@tests;

for @tests -> $_ ( :key($input), :value($expected) ) {
  is code($input), $expected, $input.perl;
}
1..6
ok 1 - "Hello, this is a world!"
ok 2 - "How about we build a big building. It will have an orange banana hanging out of a window."
ok 3 - "A giant en le sky."
ok 4 - "A yarn ball?"
ok 5 - "A hour ago I met an European."
ok 6 - "Hey sir [Richard], how 'bout a cat?"

Riesci a rimuovere uno spazio } $1alla fine (rendendolo }$1)?
Cyoce,

@Cyoce C'è un modo per farlo, ma aggiunge più complessità altrove. {S:i:g/(^|<[.?!]>' ')?'[?]'(' '<[aeiou]>?)/{<a A>[?$0]~('n'x?~$1.substr(1))}$1/}
Brad Gilbert b2gills

Ok, non ero sicuro di come Perl lo avrebbe analizzato
Cyoce il

0

Lua, 131 byte.

function(s)return s:gsub("%[%?%](%s*.)",function(a)return"a"..(a:find("[AEIOUaeiou]")and"n"or"")..a end):gsub("^.",string.upper)end

Sebbene lua sia un linguaggio terribile per il golf, credo di aver fatto abbastanza bene.


0

Pip , 62 55 54 50 byte

Prende la stringa come argomento della riga di comando.

aR-`([^.?!] )?\[\?]( [^aeiou])?`{[b"aA"@!b'nX!cc]}

Provalo online!

Spiegazione:

a                                                   Cmdline argument
 R                                                  Replace...
  -`                           `                    The following regex (case-insensitive):
    ([^.?!] )?                                      Group 1: not end-of-sentence (nil if it doesn't match)
              \[\?]                                 [?]
                   ( [^aeiou])?                     Group 2: not vowel (nil if there is a vowel)
                                {                }  ... with this callback function (b = grp1, c = grp2):
                                 [              ]   List (concatenated when cast to string) of:
                                  b                 Group 1
                                   "aA"@!b          "a" if group 1 matched, else "A"
                                          'nX!c     "n" if group 2 didn't match, else ""
                                               c    Group 2

0

Racchetta (con regex) 228 byte

(define(r a b c)(regexp-replace* a b c))
(define(f s)
(set! s(r #rx"[a-zA-Z ]\\[\\?\\] (?=[aeiouAEIOU])"s" an "))
(set! s(r #rx"[a-zA-Z ]\\[\\?\\]"s" a"))
(set! s(r #rx"\\[\\?\\] (?=[aeiouAEIOU])"s"An "))
(r #rx"\\[\\?\\]"s"A"))

test:

(f "[?] giant en le [?] sky.")
(f "[?] yarn ball?")
(f "[?] apple?")
(f "[?] hour ago I met [?] European. ")
(f "How about we build [?] big building. It will have [?] orange banana hanging out of [?] window.")
(f "Hello, this is [?] world!")

Produzione:

"A giant en le a sky."
"A yarn ball?"
"An apple?"
"A hour ago I met an European. "
"How about we build a big building. It will have an orange banana hanging out of a window."
"Hello, this is a world!"

0

Python 3 , 104 103 byte

-1 byte, senza caratteri di escape ]

lambda s:r('(^|[.?!] )a',r'\1A',r('a( [aeiouAEIOU])',r'an\1',r('\[\?]','a',s)));from re import sub as r

Provalo online!

Inizia sostituendo tutte le occorrenze di [?]con a,
quindi sostituisce tutte aseguite da una vocale, con an.
Quindi sostituisce tutto aall'inizio dell'input o una frase conA .

Suppone che [?]non toccherà mai un'altra parola e che le lettere minuscole anon dovrebbero mai iniziare una frase.


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.