Answers for "vim replace tabs with spaces"

3

vim replace tabs with spaces

" Vi:

" To replace tabs with spaces whilst typing
set tabstop=4 shiftwidth=4 expandtab
Posted by: Guest on October-22-2020
1

python pad punctuation with spaces

# Basic syntax using regex:
import re
re.sub('characters_to_pad', r' \1 ', string_of_characters)
# Where you can specify which punctuation characters you want to pad in
#	characters_to_pad

# Example usage:
import re
your_string = 'bla. bla? bla.bla! bla...' # An intelligent sentence
your_string = re.sub('([.,!()])', r' \1 ', your_string)
# your_string is updated in place
print(your_string)
--> bla .  bla? bla . bla !  bla .  .  . 
# Notice that the '?' didn't have spaces added because it wasn't listed
#	among the characters_to_pad in the above function
Posted by: Guest on December-15-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language