codealignment icon indicating copy to clipboard operation
codealignment copied to clipboard

Align more than 1 commas per row

Open SeerGiuS96 opened this issue 2 years ago • 1 comments

I usually align with just 1 caracter = or , and it works perfectly . But i got a few rows of data and i would like to align all commas.

the example:

Result.Rows.Add("32", "Introduction course", "20", 1)
Result.Rows.Add("3" , "Carssssssssssssss", "NO21", 1)

I want like:

Result.Rows.Add("32", "Introduction course", "20"  , 1)
Result.Rows.Add("3" , "Carssssssssssssss"  , "NO21", 1)

SeerGiuS96 avatar Oct 17 '23 09:10 SeerGiuS96

I am in the same situation, I've been trying to get it working with regular expressions, but so far no luck. It only aligns the first comma

Marcets423 avatar Nov 07 '23 12:11 Marcets423