We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Glob
String
It would be nice if string concatenation was implemented between Globs and between Strings and Globs.
Here is a pseudo Julia code to illustrate the point:
a = "hello" g = a * glob"*.jpg" for file in readdir(g) # matches "hello3.jpg" etc. # . . .
This code would work similarly to the following pseudo code
a = "hello" g = glob"$(a)*.jpg"
as proposed in another request #27 .
Neither of these two ideas has the draw back of #47 , which requires escaping special characters.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice if string concatenation was implemented between
Glob
s and betweenString
s andGlob
s.Here is a pseudo Julia code to illustrate the point:
This code would work similarly to the following pseudo code
as proposed in another request #27 .
Neither of these two ideas has the draw back of #47 , which requires escaping special characters.
The text was updated successfully, but these errors were encountered: