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.
「}」で始まらない「<input>」型のすべての式を文字列に置き換える必要があります。それを行うための正しい正規表現はどれですか?
例
strTest = "{ text string }<input> text<input>"; strRegex = ;//which value? strResult = Regex.Replace(strTest, strRegex , "");
strResult を返す必要があります
{ text string }<input> text
たとえば、否定的な後読みが必要な場合があります。
(?<!})<input>
RegExr を使用して試すことができます。
http://gskinner.com/RegExr
タイプや追加の属性に関係なく、任意の要素に一致させたい場合は、次を使用できます。
strRegex = "<input.*>";