Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7555283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:34:05+00:00 2026-05-30T11:34:05+00:00

I want to replace lowercase strings within: SELECT lower1, lower2, lower3 FROM lower4, lower5

  • 0

I want to replace lowercase strings within:

SELECT lower1, lower2, lower3 FROM lower4, lower5 WHERE

I use vim replace to replace them to upper case with this regex:

:%s/select\_.*\from\_.*\where/\U&/gic

The regex select\_.*\from\_.*\where is not good when there are other select queries:

for example
it selects everything in this query and affects the strings that cannot be uppercased

SELECT lower1, lower2, lower3 FROM lower4, lower5 WHERE lower1=cannot_be_uppercased
UNION all
SELECT lower1, lower2, lower3 FROM lower6, lower7 WHERE lower1=cannot_be_uppercased
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T11:34:08+00:00Added an answer on May 30, 2026 at 11:34 am

    There is non-greedy mode in vim regex. Instead of use *, use \{-}.

    The regex select\_.\{-}from\_.\{-}where , as I think, is what you want.

    Here is some docs.

    :h non-greedy

                                *non-greedy*
    If a "-" appears immediately after the "{", then a shortest match
    first algorithm is used (see example below).  In particular, "\{-}" is
    the same as "*" but uses the shortest match first algorithm.  BUT: A
    match that starts earlier is preferred over a shorter match: "a\{-}b"
    matches "aaab" in "xaaab".
    
    Example         matches ~
    ab\{2,3}c       "abbc" or "abbbc"
    a\{5}           "aaaaa"
    ab\{2,}c        "abbc", "abbbc", "abbbbc", etc.
    ab\{,3}c        "ac", "abc", "abbc" or "abbbc"
    a[bc]\{3}d      "abbbd", "abbcd", "acbcd", "acccd", etc.
    a\(bc\)\{1,2}d      "abcd" or "abcbcd"
    a[bc]\{-}[cd]       "abc" in "abcd"
    a[bc]*[cd]      "abcd" in "abcd"
    
    The } may optionally be preceded with a backslash: \{n,m\}.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to replace some string(s) from a source string. so that shouldn't be
I want to replace the 'client' field text box in fogbugz when you edit
I want to replace RBSplitView with NSSplitView in my existing project. The application is
I want to replace the last String which is a , with ) .
I want to replace and insert escape character sequences with their escape character values,
I want to replace only the first occurrence of a word in a sentence
I want to replace all the occurrences of a dot( . ) in a
I want to replace with the 4~8 characters of a string with * ,how
I want to replace all mailto: links in html with plain emails. In: text
I want to replace only the first matching element in a string instead of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.