B
Bill Mittenzwey
Is there a way to do a Regex replace on a string to stuff some variable
amount of spaces into a location of a string?
I need an expression which would take an unknown length string and move the
last char to position 15.
EX:
123456
transforms to
12345 6
I have a start, but not sure how to do the middle part:
match = "(.*)(.$)"
replace = "$0--spaces go here--$1"
amount of spaces into a location of a string?
I need an expression which would take an unknown length string and move the
last char to position 15.
EX:
123456
transforms to
12345 6
I have a start, but not sure how to do the middle part:
match = "(.*)(.$)"
replace = "$0--spaces go here--$1"