Code: Select all
goto "location\?*$pattern*";Instead
Code: Select all
goto "location\?$pattern";Did not find a word about it in help file.
May be I do something wrong, do not know, but it worked with asterisks until now.
Code: Select all
goto "location\?*$pattern*";Code: Select all
goto "location\?$pattern";*$var) is supported also in interpolated strings (variables are resolved within quoted strings). So you have to take it apart to separate * and $:
Code: Select all
goto "location\?*" . "$pattern*";Code: Select all
goto "location\;location\?"."$pattern -text- /d"Code: Select all
$pattern = "2022.08";Yes, my problem is that I do not see any other cause, can't distinguish.
Code: Select all
goto "location\;location\?"."$pattern -text- /d"Code: Select all
text <get find_queryparsed>;Here my result (paths and text (text is one word of letters only) content are changed - but nothing more) is:
Code: Select all
goto "C:\location1\;
C:\location2\;
C:\location3\;
C:\location4\;
C:\location5\;
C:\location6\;
C:\location7\?"."2022 /d";Code: Select all
goto "C:\location1\;
C:\location2\;
C:\location3\;
C:\location4\;
C:\location5\;
C:\location6\;
C:\location7\?"."2022.08 /d";Code: Select all
filter $YearMonth;Code: Select all
$q = "*2022.08*";
goto "C:\location1\;
C:\location2\;
C:\location3\;
C:\location4\;
C:\location5\;
C:\location6\;
C:\location7\?"."$q /d";
Code: Select all
$YearMonth = "2022.08";
$q = "*$YearMonth*";
goto "C:\location1\;
C:\location2\;
C:\location3\;
C:\location4\;
C:\location5\;
C:\location6\;
C:\location7\?"."$q /d";
text <get find_queryparsed>;Code: Select all
$YearMonth = "2022.08";
$YearMonth = "*".$YearMonth."*";
goto "C:\location1\;
C:\location2\;
C:\location3\;
C:\location4\;
C:\location5\;
C:\location6\;
C:\location7\?"."$YearMonth AND -text- /d";