Selecting columns with the select verb by using regular expressions.
select
df %>% select(contains('value'))
df.select(pl.col("^*value.*$"))