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.
source
share