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.
私はこの文字列を持っています
s = [notneedtext#neededtext, notneedtext#neededtext, ...]
#各要素の必要なテキストのみを ( なしで) 保持し、不要な部分を切り取るには、どの正規表現を使用すればよいですか?
#
コンマが含まれていないと仮定すると、neededtext必要なのは
neededtext
(?<=#)([^,]*)(?=(,|\]))
(?<=#)
([^,]*)
(?=(,|\]))