Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

regex - 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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Find what:

(?:[|(?!^)G)[^,]]*K,

Replace with:
space


Break-down:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...