in this line, the .match
would throw an error before you can show
anything, so I suggest you do this:
m = match(r"[+-]?\d+(\.\d+)?", i)
if isnothing(m)
@show i
end
in this line, the .match
would throw an error before you can show
anything, so I suggest you do this:
m = match(r"[+-]?\d+(\.\d+)?", i)
if isnothing(m)
@show i
end