Project

General

Profile

Actions

Bug #775

closed

currently a space can not be in the search term

Added by herrlado over 12 years ago. Updated over 12 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Start date:
11/01/2011
Due date:
% Done:

0%

Estimated time:

Description

@string cHelpers::SearchEvents(string args) {

args = Trim(args);
string wantedChannels;
string pattern;
size_t space = args.find(' ');
if (space == string::npos) {//so only search term
pattern = args;
wantedChannels = "";
} else {
wantedChannels = args.substr(0, space);
pattern = args.substr(space+1);
}
@
Actions

Also available in: Atom PDF