- 370 名前:名無しさん@お腹いっぱい。 mailto:sage [2007/04/29(日) 13:31:23 ID:RPVfs0TI0]
- >>369の続き
---以下続き--- var strs, key; strs = inputted_str.split(/ | /); for(key in strs){ str = strs[key]; if(!str){continue;} if(str.indexOf(':') != -1){ attribute_condition_ary.push(attribute(str)); continue; } if(search_phrase.length > 0){ if(str == 'OR'){ search_phrase += ' OR'; continue; }else if(search_phrase.match(/.+ OR$/)){ search_phrase += ' '; }else if(str.charAt(0) == '-'){ search_phrase += ' ANDNOT '; str = str.slice(1); }else{ search_phrase += ' AND '; } } search_phrase += str; }
|

|