Prendi tre input, una stringa di testo T
; una stringa di caratteri da sostituire F
,; e una serie di caratteri per sostituirli con R
,. Per ogni sottostringa T
con caratteri uguali (senza distinzione tra maiuscole e minuscole) F
, sostituirli con i caratteri in R
. Tuttavia, mantieni lo stesso caso del testo originale.
Se ci sono più caratteri R
rispetto F
, i caratteri extra dovrebbe essere lo stesso caso come sono in R
. Se sono presenti numeri o simboli F
, i caratteri corrispondenti R
devono conservare il caso in cui si trovano R
. F
non apparirà necessariamente in T
.
Puoi supporre che tutto il testo sia compreso nell'intervallo ASCII stampabile.
Esempi
"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 "
così divertente, ma ho adorato quell'esempio.
"TeXT input", "text", "test"