あにす #5666(2008/02/03 09:05 GMT) [ C# ] Rating0/0=0.00
続いて(1)基本版です。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//http://ja.doukaku.org/148/ 投稿用 using System; static class Program { static string Tr(this string target, string from, string to) { for(int i = 0; i < from.Length; i++) { target = target.Replace(from[i], to[i]); } return target; } static void Main(string[] args) { Console.WriteLine("typewriter".Tr("qwertyuiop", "QWERTYUIOP")); Console.ReadLine(); } }
Rating0/0=0.00-0+
[ reply ]
あにす
#5666()
[
C#
]
Rating0/0=0.00
続いて(1)基本版です。
Rating0/0=0.00-0+
[ reply ]