We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ef6bab commit 3276183Copy full SHA for 3276183
dsc/src/mcp/list_dsc_functions.rs
@@ -28,7 +28,7 @@ fn convert_wildcard_to_regex(pattern: &str) -> String {
28
.replace(r"\?", ".");
29
30
if !pattern.contains('*') && !pattern.contains('?') {
31
- format!("^{}$", regex_pattern)
+ format!("^{regex_pattern}$")
32
} else {
33
regex_pattern
34
}
0 commit comments