As can be seen from the output above, radare2 generates a "hit" flag for every entry found. You can then use the ps command to see the strings stored at the offsets marked by the flags in this group, and they will have names of the form hit0_<index>:
[0x00404888]> / ls
...
[0x00404888]> ps @ hit0_0
lseek
You can search for wide-char strings (e.g., unicode letters) using the /w command:
[0x00000000]> /w Hello
0 results found.
To perform a case-insensitive search for strings use /i:
It is possible to specify hexadecimal escape sequences in the search string by prepending them with "\x":
But, if you are searching for a string of hexadecimal values, you're probably better of using the /x command:
Once the search is done, the results are stored in the searches flag space.
To remove "hit" flags after you do not need them anymore, use the f- hit* command.
Often, during long search sessions, you will need to launch the latest search more than once. You can use the // command to repeat the last search.