3つの入力、テキストの文字列T
、置換する文字列、F
; そして、それらを置き換える文字列R
。T
と同じ(大文字と小文字を区別しない)文字を持つの各部分文字列について、の文字でF
置き換えますR
。ただし、元のテキストと同じ大文字小文字を使用してください。
より多くの文字が含まれているR
場合F
、余分な文字は大文字と小文字を区別する必要がありR
ます。に数字または記号がF
ある場合、対応する文字はR
の大文字小文字を保持する必要がありR
ます。F
に表示されるとは限りませんT
。
すべてのテキストが印刷可能なASCII範囲にあると想定できます。
例
"Text input", "text", "test" -> "Test input"
"tHiS Is a PiEcE oF tExT", "is", "abcde" -> "tHaBcde Abcde a PiEcE oF tExT"
"The birch canoe slid on the smooth planks", "o", " OH MY " -> "The birch can OH MY e slid OH MY n the sm OH MY OH MY th planks"
"The score was 10 to 5", "10", "tEn" -> "The score was tEn to 5"
"I wrote my code in Brain$#@!", "$#@!", "Friend" -> "I wrote my code in BrainFriend"
"This challenge was created by Andrew Piliser", "Andrew Piliser", "Martin Ender" -> "This challenge was created by Martin Ender"
// Has a match, but does not match case
"John does not know", "John Doe", "Jane Doe" -> "Jane does not know"
// No match
"Glue the sheet to the dark blue background", "Glue the sheet to the dark-blue background", "foo" -> "Glue the sheet to the dark blue background"
// Only take full matches
"aaa", "aa", "b" -> "ba"
// Apply matching once across the string as a whole, do not iterate on replaced text
"aaaa", "aa", "a" -> "aa"
"TeXT input", "text", "test" -> "TeST input"
"The birch canoe slid on the smooth planks", "o", " OH MY "
そんなにユーモラスなのかわからないが、私はその例を愛していた。
"TeXT input", "text", "test"