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.
文字列内のコンマに一致する必要があります。これは例です:
dog:Cat,hi:Bye,num:,1,2,3,5,6,7,8,9,10,this:that
正規表現などを使用して、カンマのみを緑の矢印と一致させたい
「num:」の値は常に類似しています。例 "num:,4,7,9" または "num:,2"
前もって感謝します
これはそれを行う必要があります:
,(?=\w+:)