I have a list, e.g.:
list = {1, 2, 3, "Element 1", 4, 5, "Element 2", "Something else 1", "etcetera"}
Now, I want all elements starting with "El"
. Using Position
, I could find the position of e.g. "Element 1"
:
Position[list, "Element 1"]
But, I would like to know the positions of "Element 1"
and "Element 2"
, as both start with "El"
. So, I would like to have something like
Position[list, "El"_]
I just can't get something like this to work.
Thanks for any help.
Answer
But I would like to know the positions of
"Element 1"
and"Element 2"
...
You can still use Position[]
; things are a little more elaborate, though, due to the strings:
Position[list, s_String /; StringMatchQ[s, "El*"]]
{{4}, {7}}
Extract[list, %]
{"Element 1", "Element 2"}
Comments
Post a Comment