How to extract commas in between square brackets in notepad++?
问题 For example: [TEXT1,TEXT2,TEXT3] my expression: [\[].*,.*[\]] Finds strings with commas (in between brackets,) but I only want to explicitly match the comma that exists in the square brackets. I need to replace the commas with spaces - but only in the square brackets. I've tried [\[],[\]] but that doesn't work - \[(.*?)\] will find the text in between as well - but I do not want the entire string. Can anyone suggest what I need to do to just find commas in between the brackets? 回答1: Find what