開発環境
- Microsoft Windows 7 Home Premium (OS)
- Microsoft Visual C# 2010 Express Edition (IDE)
- 言語: C#
『初めてのC# 第2版』(Jesse Liberty+Brian MacDonald著、日向俊二訳、オライリー・ジャパン、2006年、ISBN978-487311-294-7)の 第15章(文字列)15.6(練習問題)、練習15-1、3を解いてみる。
練習15-1, 3
コード
using System;
using System.Collections.Generic;
namespace Sample
{
class Tester
{
public void Run()
{
string s1 = "Hello", s2 = "World",
s3 = @"Come visit us at http://www.LibertyAssociates.com",
s41 = s1 + s2, s42 = string.Concat(s1, s2),
s5 = "world", s61 = string.Copy(s3), s62 = s3;
string[] strs = { s1, s2, s3, s41, s42, s5, s61, s62 };
Console.WriteLine("文字「H」が含まれているかどうか");
foreach (string s in strs)
{
string str = s.IndexOf("H") == -1 ?
"含まれていない" : "含まれている";
Console.WriteLine("{0}: {1}", s, str);
}
}
static void Main()
{
Tester t = new Tester();
t.Run();
}
}
}
入出力結果(Console Window)
文字「H」が含まれているかどうか Hello: 含まれている World: 含まれていない Come visit us at http://www.LibertyAssociates.com: 含まれていない HelloWorld: 含まれている HelloWorld: 含まれている world: 含まれていない Come visit us at http://www.LibertyAssociates.com: 含まれていない Come visit us at http://www.LibertyAssociates.com: 含まれていない 続行するには何かキーを押してください . . .
0 コメント:
コメントを投稿