Related questions
Regular expression search replace in Sublime Text 2
I'm looking to do search replace with regular expressions in Sublime Text 2. The documentation on this is rather anemic. Specifically, I want to do a replace on groups, so something like converting this text:
Hello my name is bob
And …
Regex replace uppercase with lowercase letters
I'm trying to replace uppercase letters with corresponding lowercase letters using regex.
So that
EarTH: 1,
MerCury: 0.2408467,
venuS: 0.61519726,
becomes
earth: 1,
mercury: 0.2408467,
venus: 0.61519726,
in Sublime Text. How can I downcase letters only in words that contain both lower and uppercase letters? So …
adding comma to each line using sublime text 2
I am trying to use sublime's text search and replace function and regex to match a string of number in each line and append a comma to each. So here's the sample file:
273794103
418892296
134582886
380758661
109829186
248050497
2167935715
374858669
I want this to be:
273794103,
418892296,
134582886,
380758661,
109829186,
248050497,
2167935715,
374858669,
I tried …