facebook twitter hatena line email

「Unity/Csharp/文字操作」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(検索)
行8: 行8:
  
 
==検索==
 
==検索==
  if (a.IndexOf("検索文字列") == -1) {
+
  if (name.IndexOf("検索文字列") == -1) {
 
     // no hit
 
     // no hit
 
  } else {
 
  } else {
 
     // hit
 
     // hit
 
  }
 
  }

2017年9月22日 (金) 07:31時点における版

文字の長さ

String name = "abcdef";
name.Length; // 6

文字の切り取り

String name = "abcdef";
name = name.Substring (name.Length - 2, 2); // ef

検索

if (name.IndexOf("検索文字列") == -1) {
    // no hit
} else {
    // hit
}