--- parser3/src/classes/string.C 2020/12/17 20:01:03 1.249 +++ parser3/src/classes/string.C 2024/09/07 15:01:38 1.252 @@ -1,8 +1,8 @@ /** @file Parser: @b string parser class. - Copyright (c) 2001-2020 Art. Lebedev Studio (http://www.artlebedev.com) - Author: Alexandr Petrosian (http://paf.design.ru) + Copyright (c) 2001-2023 Art. Lebedev Studio (http://www.artlebedev.com) + Authors: Konstantin Morshnev , Alexandr Petrosian */ #include "classes.h" @@ -21,7 +21,7 @@ #include "pa_vregex.h" #include "pa_charsets.h" -volatile const char * IDENT_STRING_C="$Id: string.C,v 1.249 2020/12/17 20:01:03 moko Exp $"; +volatile const char * IDENT_STRING_C="$Id: string.C,v 1.252 2024/09/07 15:01:38 moko Exp $"; // class @@ -205,8 +205,32 @@ static void _pos(Request& r, MethodParam r.write(*new VInt((int)string.pos(r.charsets.source(), substr.as_string(), offset))); } +struct Split_action_info { + const String& src; + ArrayString &result; +}; + +static void split_action(Table& , ArrayString* row, int prestart, int prefinish, int poststart, int postfinish, void *info) { + Split_action_info& ai=*static_cast(info); + if(row) { // begin&middle + // piece from last match['prestart'] to beginning of this match['prefinish'] + ai.result += &ai.src.mid(prestart, prefinish); + } else // end + if(poststart != postfinish) + ai.result += &ai.src.mid(poststart, postfinish); +} + static void split_list(Value& delim_value, const String& string, ArrayString& result) { - string.split(result, 0, delim_value.as_string()); + if(Value* value=delim_value.as(VREGEX_TYPE)){ + VRegex *vregex=static_cast(value); + vregex->study(); + + int matches_count=0; + Split_action_info ai = { string, result }; + + string.match(vregex, split_action, &ai, matches_count); + } else + string.split(result, 0, delim_value.as_string()); } #define SPLIT_LEFT 0x0001 @@ -254,7 +278,7 @@ static Table& split_vertical(ArrayString table+=row; } } else { // left - Array_iterator i(pieces); + ArrayString::Iterator i(pieces); while(i.has_next()) { Table::element_type row(new ArrayString); *row+=i.next(); @@ -272,7 +296,7 @@ static Table& split_horizontal(ArrayStri for(int i=pieces.count(); --i>=0; ) *row+=pieces[i]; } else { // left - for(Array_iterator i(pieces); i.has_next(); ) + for(ArrayString::Iterator i(pieces); i.has_next(); ) *row+=i.next(); } table+=row;