I have a dataframe that I'd like to expand with a new column which would contain/match the list of all ids if they fully contain the row string_value
id string_value
1 The quick brown fox
2 The quick brown fox jumps
3 The quick brown fox jumps over
4 The quick brown fox jumps over the lazy dog
5 The slow
6 The slow brown fox
Desired output
id string_value new_columns
1 The quick brown fox [2, 3, 4]
2 The quick brown fox jumps [3, 4]
3 The quick brown fox jumps over [4]
4 The quick brown fox jumps over the lazy dog []
5 The slow [6]
6 The slow brown fox []
Thanks