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.
私はテキストでタグを取得するために次の正規表現を持っています
(<[^ ][^><]*>)
タグ以外のすべてを取得するにはどうすればよいですか...
明確化:ここからルールとこれを本文として配置します
<asd> ba <asd><a>ddd</a>
highlightedテキスト以外のすべてを取得したい
highlighted
に一致する正規表現を使用する代わりに、を分割することができます。
x.split(/<[^ ][^><]*>/)
split一致しないものはすべて配列として返します。
split
しません
>([^<]*)<
トリックをしますか?グループには、探している文字列が含まれています。