possibility of multi-search for smartstream, or better regex
http://siwego.net/grf/regex.jpg
is there a way, to search for e.g. "cd project" and "cdproject" in one search? since wildcards works at edges of word well, "cd?project" nor "cd*project" seems not working to output both results..
3
votes
Anonymous
shared this idea
Try
“cd project” OR cdproject
or even
(cd project) OR cdproject
if you don’t need exact phrase “cd project” but need to find posts with “cd” and “project” in any place.
-
No. Regex search is not planned. It can cause unpredictable performance/stability problems so I prefer to not add it.
-
Anonymous commented
Is there a regex search planned?
-
Anonymous commented
thank you!