Regular Expression string replacement method, regular expression string

Source: Internet
Author: User

Regular Expression string replacement method, regular expression string

I have the following lines:

D: \ Projects \ qqq \ Development \ qqq. MySol1.sln
D: \ Projects \ qqq \ qqqDevelopment \ qqqMySol2.sln
D: \ Projects \ qqq \ Development \ MyInstaller. sln
D: \ Projects \ qqq \ Development \ MyInstaller. sln
D: \ Projects \ Development \ MyInstaller. sln

I need a regular expression, which will cause the Capture:

Line 1: Development and MySol1.sln
Line 2: Development and MySol2.sln
Line 3: Development and MyInstaller. sln
Line 4: Development and MyInstaller. sln
Line 5: Development and MyInstaller. sln

Therefore, a regular expression will remove (ignore) the word qqq from the row. I have been trying and adjusting, and there are some solutions:

Copy codeThe Code is as follows:
.*\\(? <A>. *) \. {3 }(? <B> .*)

This causes:

Line 1: Development and. MySol1.sln
Line 2: qqqDevelopment and MySol2.sln
Line 3: Development and nstaller. sln
Line 4: Development and nstaller. sln
Line 5: Development and nstaller. sln

Therefore,. {3} should be fixed

1. I think the job should be:

.*\\(? : Qqq )? (? <A> .*)\\(? : Qqq )? (? <B> .*)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.