user1703914
user1703914

Reputation:

replace uppercase letters with space in sublime

I am trying to process the following two lines in Sublime :

2013-12-26T23:24:42Z

test

I just want to replace the capital (uppercase) letters with a space. I searched for T|Z, but it selects the lowercase 't' in test in the second line.

Is there a way to select only the uppercase letters? I just want to replace uppercase letters with a space.

Thanks,

Upvotes: 4

Views: 836

Answers (1)

dee-see
dee-see

Reputation: 24088

You most likely have the case insensitive option selected, because otherwise your regex should work.

Make sure this option is not selected:

SublimeText case sensitive option

Upvotes: 6

Related Questions