Sublime Bug with Regular Expressions

I am trying to do sublime regular expression searches and replace it with a link. Here is my details:

if(requestType.endsWith("CompleteMulti")) {
if(requestType.endsWith("CompletePartial")) {
if(requestType.endsWith("Unfulfillable")) {

When I run the regex:

^.+"(\w+)".+$

with the replace statement:

$1

I get the following output:

completemuLti
completepaRtial
unfulfillaBle

As you can see, the case of letters goes all sluggishly. I am using version 2.0.2, build 2221

Is this a known issue? Some searches did not display any data. If anyone knows a workaround for this, please let me know.

+4
source share
1 answer

Before performing "replace all", deselect the option "save register" ( ALT+ A)

" " , . :

if(requestType.endsWith("CompleteMulti")) {
if(requestType.endsWith("CompletePartial")) {
if(requestType.endsWith("Unfulfillable")) {
completemuLti
completepaRtial
unfulfillaBle

          ^ only this character is left in upper case

. "" "", " ":

:

SUblime
suBLime
sublIME

:

BAnanas
baNAnas
banaNAS

IcedDante , (, ). , :

,

, Applied Biology 101, , . , 101, .

, / "biolog" "", :

,

, 101, , . , 101, .

, .

note - , ...

+4

All Articles