Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Word 文書で$で始まるすべての単語を置き換える必要があります
サンプル:
$Address $Lastname etc.
最初に、$ で始まるすべての単語のリストを作成する必要があります。その後、すべての単語を置き換えます
$Lastname -> Waning etc
spiredocで$で始まるすべての単語のリストを作成するにはどうすればよいですか?
ファイルを読み取ります。Split() で単語を分割し、結果をリストに保持する
string s = "word file text"; List<string> words = s.Split(' ');
リスト内の項目を制御する
List<string> result = new List<string>(); foreach(string item in words) { if (item .StartsWith("$")) { result.Add(item); } }
結果は $ を含む文字列を返します