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.
のようなものがありHDKLFKEHR######LDKFRLEKます。
HDKLFKEHR######LDKFRLEK
外側の部分 (意味:HDKLFKEHRとLDKFRLEK) は決して変化しませんが、######常に変化します。
HDKLFKEHR
LDKFRLEK
######
文字列から抽出するにはどうすればよい######ですか?
string input = "HDKLFKEHR######LDKFRLEK"; string sub = input.Substring(9);//sub would be ######LDKFRLEK string sub = sub.substring (0, sub.length - 8) Console.WriteLine("Substring: {0}", sub); output : ######
これが役立つことを願っています