A、またはAn?


21

英語では、andとの間には楽しく簡単な違いがanありaます。an母音で始まる単語の前aと、子音で始まる単語を使用するときに使用します。

この課題を簡単にするためにan、母音(aeiou)でa始まる単語の前に、子音で始まる単語の前に置きます。

入力

印刷可能なASCII文字のみで構成される文字列。[?]挿入anまたはを選択する必要がある場所に表示されますa[?]常に単語の前に表示されます。文は文法的に正しく、通常のようにフォーマットされると想定できます。

出力

[?]適切な単語(anまたはa)に置き換えられた入力文字列。大文字の使用について心配する必要はありません!

大文字にするタイミング

単語の前に文字がない(入力の最初の単語)場合、または単語の前に.?!スペースが続く場合は、単語を大文字にします。

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?

これはなので、バイト単位の最短コードが勝ちです!


はい、ありがとう。入力と[?]単語の間に余分なスペースがないと仮定できます か?
DJMcMayhem

8
a / anは、文の先頭に来るときに入力の途中で大文字にする必要がありますか?(「これは[?]テストです。[?]テストです。)その場合、文はどの句読点で終わることができますか?引用符または括弧内の文はどうですか?または、ピリオドで終わる略語(「このような入力[?]」など)大文字のルールには奇妙な特殊なケースがたくさんありますので、私たちのプログラムが何をするか、または処理する必要がないかを非常に明確にしてください。
DLosc

1
大文字にする時期を明確にしていただけますか?最初のキャラクター?
DJMcMayhem

31
[?] hour ago I met [?] European.誰もがうんざりさせるためにテストケースを追加する必要があります。
マーティンエンダー

1
今、私たちは持っている必要があります[?] hour ago I met [?] horse.
ビーカー

回答:


6

V、41バイト

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

オンラインでお試しください!、これはまた、余分なバイトカウントなしですべてのテストケースを検証するために便利に使用できます。

これは、Vの「正規表現圧縮」を利用します。それは多くの印刷できない文字を使用するので、ここに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

残念ながら、OPは「大文字の使用について心配する必要があります!」と言いました。(エンファシス鉱山)。
エレンディアスターマン

1
@ El'endiaStarmanああ、私はそれを読み違えました。私はそれを修正することができますが、OPが指定しなかったため、何を大文字にするべきか分かりません。
DJMcMayhem

@ El'endiaStarmanが修正されました。
DJMcMayhem

7

Perl、48バイト

Ton Hospelのために1バイトを保存しました

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

シバンを1つとしてカウントすると、入力はstdinから取得されます。

説明

#!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

サンプルの使用法

$ 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
これを説明してもらえますか?
スディー

1
/[.?!]/スペースが続く後の大文字のサポートがありません
Ton Hospel

1
@TonHospelは10時間前に、この問題について言及していませんでした。
プリモ

2
わかりました、その場で仕様を変更することはとても不公平です。PS:\Gbackwarsdsに行くのが大好きです。PPS、少し短い:s;\[\?];A.n x$'=~/^ [aeiou]/^$"x/[^.?!] \G/;eg
トンホスペル

1
@sudeeが更新され、説明が追加されました。
プリモ

7

ルビー、78 72バイト

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

非ゴルフ

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"[...]本当に賢いです。👍🏻あなたは、内側をスキップして、いくつかのバイトを保存することができますsubs.gsub(/(^|\. )?\K\[\?\] ([aeiou])?/i){"anAn"[$1?2:0,$2?2:1]+" #$2"}
ヨルダン

6

PHP、207バイト

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);}

私はソリューションが時々より完全であるの
が好きです... しかし、私はそれが少し終わっていることを認めなければなりません。

ファイルに保存しphp <filename>、STDINからの入力で実行します。

テストケース

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!

壊す

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
「バナナ不足」への賛成票!LOL
MonkeyZeus

@MonkeyZeus:試してみよう[?][?][?]s [?]lert!
タイタス

私が想像できるのは、今の不足を心配している悲痛なドンキーコングだけです:(
MonkeyZeus

5

Minkolang 0.15、75バイト

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

ここで試してみてください!

説明

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

Minkolangはトロイダルであるため、プログラムカウンターが右端から移動すると、左側に再び表示されることに注意してください。もちろんゴルフはできますが、仕様のために21バイトを追加する必要があったため、試してはいけません。


6
その説明を読んだ後、excitebikeをプレイしたいのは私だけですか?
魔法のタコUr

3

JavaScript(ES6)、90 86 87 85

もう一度編集大文字の仕様が変更されたため、(より賢明になりました)

もう一度編集 1バイト保存@Huntro

編集IsmaelMiguelが指摘するように、さらに2バイトを引用符などを管理します(opで要求されているかどうかわからない場合でも)。以前は86バイトをカウントしていましたが、85バイトでした。

コメントイベントに記載されている大文字化ルールが不完全な場合(少なくとも)従おうとする

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

テスト

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>


[?][?]与えるべきではないAna?そして、[?][?] a.生産すべきではないAna a.
イスマエルミゲル

@IsmaelMiguel私はあなたが何を言っているのか正確に理解していませんが、とにかく[?] will always appear before a word. You can assume that the sentence will be grammatically correct and formatted like normal.
-edc65

わかりましたが、あなたのコードは[?] "[?]".An "A"、引用符は無関係です)および[?] "A".(でうまく動作します)に対して奇妙な結果を与えています[?] A.
イスマエルミゲル

@IsmaelMiguel [?] "[?]"は有効な入力ではありません。[?] will always appear before a word 「[?]」は言葉ではありません。
edc65

2
秒のエスケープは]必要ありません。/(\w )?\[\?](\W*.)/g
ハントロ

2

バッチ、136バイト

@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%

STDINに1行入力します。


2

PHP、100 92バイト

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

正規表現をさらにゴルフすることができました。

未定義の定数について通知しますが、引き続き機能します。

編集:primoのおかげで8バイト節約


また、[n,A,a]ルックアラウンドアサーション(\Kおよび(?= ))を使用して、置換配列を取得することも可能です。
プリモ

2

Pythonの3.5.1、153 147 124バイト

*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='')

入力:

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

出力:

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

123バイトバージョン-これは大文字化ルールを処理しません。

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

できた!


1
Codegolfへようこそ。あなたはそれを使用し;、それをゴルフすることができます。
ABcDexter

1
m.start() forである必要がありm.start()fors[i+2] in 'aeiouAEIOU'する必要がありますs[i+2]in'aeiouAEIOU'。空白による3バイトの簡単なひげそり。
エリックアウトゴルファー16

1
('an','a')[s[i+2]in'aeiouAEIOU']反転しているので、これ'a'+'n'*(s[i+2]in'aeiouAEIOU')を修正して2バイト節約できます。ここでは、ゴルフの多くのヒントを見つけることができます
ロッド

1
このコミュニティはとても素敵で、新人を助けてゴルフのヒントを提供してくれる人がどれだけいるのかがわかります!
yo

1
すごいenumerate()ですね。ありがとう@chepner。
グルパッドママダプール

2

Java、180 178バイト

ここでの最初の投稿では、Kevin Cruijssen投稿の一部を使用しましたが、別のアプローチで、彼のおかげでもう少し減らすことができました!

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;}

ここにありません:

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;
    }

そして結果

簡単な説明として、再帰的なアプローチを使用してすべてを見つけます[?]

大文字と小文字を区別しない一致を使用する方法が見つかりませんでした(可能かどうかはわかりません)。

178bytes:Martin Enderに感謝!


1
PPCGへようこそ!]正規表現でエスケープする必要はないと思います。
マーティンエンダー

あなたは、唯一の開口部1がenoughtで、右のおかげである
AxelH

2

05AB1E38 36 35 バイト

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

オンラインそれを試してみたり、すべてのテストケースを確認してください

説明:

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
それには小さなバグがあります。「an」の後の各単語を大文字にします。たとえば、「[?] orange」は「an Orange」になります。あなたが]後に追加する場合、動作しているようだ::
ドリアン

@Dorian Woops .. 1 }バイト節約できると思ったので、後で削除しましたが、[?] vowel場合によっては失敗するのは確かです。知らせてくれてありがとう!
ケビンクルーイッセン

1

C#、204 235バイト

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("[?]","");}

ゴルフされていない完全なプログラム:

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("[?]", "");
    }
}

これは、特に正規表現の部分で改善されると確信していますが、現時点では何も考えられません。


インポートなしで動作しますか?

おっと、正規表現のインポートをカウントに含めるのを忘れていました。
ヨードル

1
ゴルフコードはどのような形式でもそのまま実行する必要があります。正規表現のインポートなしで実行しない場合、正規表現のインポートもゴルフコードで実行する必要があります
cat

わかった、ありがとう。まだ答える方法を正確に解決しています。現在、カウントと回答にはSystem.Text.RegularExpressionsが含まれています。
ヨドル

これは今よさそうだ。:)また、Code Golf Metafaqタグも確認できます。

1

Java 7、239 214 213バイト

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];}

未ゴルフ&テストケース:

ここで試してみてください。

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!"));
  }
}

出力:

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!

私は再帰的なソリューションを使用してみました、私は多分改善するより、あなた:(必要性2つのバイトで終わる..しかし、私はあなたの正規表現を使用するので、私はそれを投稿することが好きではありません。
AxelH

@AxelHおそらくイデオネに投稿してここにリンクしてもらえますか?一緒にゴルフに何かを見つけるかもしれません。;)
ケビンクルーイッセン

ここにideone.com/z7hlViがありますがisEmpty、正規表現を使用するよりも良い方法を見つけました^$。最終的に202になると信じています;)
AxelH

@AxelHああいいね。うーん、202ではなく195バイトをカウントしますか?ちなみに、三項のif-elseで直接リターンすることで、180までゴルフすることができます。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;}だから、間違いなく私のループアンサーよりも短くなります。:)
ケビンクルーイッセン

そうそう、ifブロックを最後の1行に入れて、交換するのを忘れました。ありがとう。
AxelH

1

ラケット451バイト(正規表現なし)

それは明らかに長い答えですが、aとanを大文字に置き換えます:

(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))

テスト:

(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!")

出力:

"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!"

詳細バージョン:

(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))

イェイラケット!参照してくださいラケット/ Schemeでゴルフのためのヒントを
猫を

ゴルフ用ではありませんが、優れた言語です。
rnso


1

網膜66 60バイト

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

オンラインでお試しください。

説明:

[?]母音または子音が続く大文字小文字を区別しない検索を実行します。オプションの母音はキャプチャグループ2に保存され、マッチ全体はキャプチャグループ1に保存されます。

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

これをに置き換えa、次に2番目のグループの長さn(0または1のいずれかn)が続き、その後にキャプチャグループ1の文字が続きます。

a$.2*n$1

次にa、文字列の先頭、またはいずれかと.?!スペースの後に一致する:

(^|[.?!] )a

そして、キャプチャグループ1の他の文字を削除せずに、Aを大文字にします。

$1A

1

Java(JDK)、154バイト

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");}

オンラインでお試しください!

説明:

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"


0

Groovy、73 162バイト

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

編集:いまいましい、大文字はここですべてを完全に複雑にしました


これは文の先頭で大文字になりますか?
タイタス

いや。チャレンジの説明がその間に変更されたことが
わかりました...-norganos

「地下室のドアを開けて[?]時間をください。」コードを壊します:groovyconsole.appspot.com/edit/5159915056267264
マジックタコ

チャレンジの説明はまだ完全に矛盾しています。最初に、「大文字の使用について心配する必要があります!」そしてその直後に大文字のルールがあります
-norganos

一貫しています。大文字の使用について心配する必要があります(つまり、管理する必要があります)。それからそれを説明します
edc65

0

C#209バイト

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);}

フォーマット済み

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バイト

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

説明:

{
  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/
}

テスト:

#! /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?"

} $1最後にスペースを削除することはできます}$1か?
チョイス

@Cyoceこれを行う方法はありますが、他の場所ではより複雑になります。{S:i:g/(^|<[.?!]>' ')?'[?]'(' '<[aeiou]>?)/{<a A>[?$0]~('n'x?~$1.substr(1))}$1/}
ブラッドギルバートb2gills

わかりました、perlがそれをどのように解析するのか分かりませんでした
チョイス

0

Lua、131バイト。

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

luaはゴルフのひどい言語ですが、かなり上手くやったと感じています。


0

ピップ62 55 54 50バイト

文字列をコマンドライン引数として受け取ります。

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

オンラインでお試しください!

説明:

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

ラケット(正規表現付き)228バイト

(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"))

テスト:

(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!")

出力:

"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バイト

-1バイト、エスケープなし ]

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

オンラインでお試しください!

のすべての出現を[?]で置き換えて開始しa
次にa母音が続くすべてをで置き換えますan
その後、すべてを置き換えますa、入力の先頭のまたは文をでA

[?]別の単語に触れることは決してなく、小文字aは文を開始してはならないと仮定します。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.