简体   繁体   中英

How to compare a char to [ in Julia?

In Julia, I have some lines in a file that start with a [ char. To get these lines, I try to compare the first char of each line to this char, but I seem to be missing some syntax. So far, I've tried this, which returns false (for the first one) or doesn't accept the char (for the second):

if (line[1] == "[")

if (line[1] == "\[")

What would be the proper syntax to use here?

The canonical way would be to use startswith , which works with both single characters and longer strings:

julia> line = "[hello, world]";

julia> startswith(line, '[') # single character
true

julia> startswith(line, "[") # length-1 string
true

julia> startswith(line, "[hello") # longer string
true

If you really want to get the first character of a string it is better to use first since indexing to strings is, in general, tricky.

julia> first(line) == '['
true

See https://docs.julialang.org/en/v1/manual/strings/#Unicode-and-UTF-8-1 for more details about string indexing.

You comparing a string "[" not a char '['

Hope it solve your problem

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM