Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Reduce Wildcard PatternsNew to Visual Studio Code? Get it now.
Reduce Wildcard Patterns

Reduce Wildcard Patterns

ile-24556

|
86 installs
| (0) | Free
Reduce wildcard pattern lines.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Reduce Wildcard Patterns

Visual Studio Code extension to reduce wildcard pattern lines.

Usage

  1. Select lines. If no line is selected, the entire text is taken.
  2. Press Ctrl+Shift+P or F1 to show Command Palett.
  3. Execute Reduce Wildcard Pattenrs.

Usage animation

Features

Compare each row and reduce the number of rows by wildcard matching.

  • A star (*) matches any string, including empty string.
  • A question mark (?) matches any single character.
  • A star takes precedence over a question mark.
    • The program does not determine the precedence between x*y?z and x?y*z. However, you can make x*y*z by your hand in this case.
  • Consecutive starts are compressed into one.
  • Character classes ([...], [!...], and [^...]) are not supported. Brackets are treated as literal characters.
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft