On Wednesday, January 6, 2016 at 7:13:19 PM UTC-7, Eric Forgy wrote: > > > julia> ismatch(r"^\\","\\indent") > true >
Much faster to do
startswith("\\indent", '\\')
rather than using a regular expression for a simple test like this.
On Wednesday, January 6, 2016 at 7:13:19 PM UTC-7, Eric Forgy wrote: > > > julia> ismatch(r"^\\","\\indent") > true >
Much faster to do
startswith("\\indent", '\\')
rather than using a regular expression for a simple test like this.