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.
%文字列から記号に含まれる名前を抽出する必要があります。たとえば"%column1%、1 番目の列で%column2%2 番目%column'-4%の列で、Work 以外の文字を含む列です」
%
"%column1%
%column2%
%column'-4%
上記のフレーズから列名を抽出する方法はありますか?
を使用し、プログラミング言語を使用%(.+?)%して Regex グローバル オプション (通常は/g) を指定し、すべての一致を取得します。各マッチには 、 などが含まれcolumn1ますcolumn2。
%(.+?)%
/g
column1
column2