Hello All,
This seems like such a trivial thing, but I couldn’t get it to work.
I’m simply trying to filter a dataframe column by a wildcard search. What is the right syntax?
df = DataFrame(:a => ["abcdef","abcdeg","xyzefg"], :b => [1,2,3])
so I’m looking for something like abc*g on column :a
I tried this, but this doesn’t seem to work.
contains.(df.a, r"abc*g")
Thanks.