julialangHow to use regular expressions in JuliaLang?
Regular expressions in JuliaLang are used to match patterns in strings.
Example
occursin(r"\d", "1 comment")
Output example
true
Helpful links
More of Julialang
- How to use tuples in JuliaLang?
- How to use enums in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to work with matrices in JuliaLang?
- How to use dictionaries in JuliaLang?
- How to create a histogram in JuliaLang?
- How to use channels in JuliaLang?
- How to use lambda functions in JuliaLang?
- How to work with CSV in JuliaLang?
- How to create a vector in JuliaLang?
See more codes...