:relfileprefix: ../../../ [#4FB8DA9B975944CB12FD91C010774FD3916A96E8] = Function params_base::find_last pass:v,q[Find a matching key] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/params_base/iterator.adoc[iterator] find_last( string_view key, xref:boost/urls/ignore_case_param.adoc[ignore_case_param] ic = = {}) const noexcept; ---- == Description pass:v,q[This function examines the] pass:v,q[parameters in the container to] pass:v,q[find a match for the specified key.] pass:v,q[The comparison is performed as if all] pass:v,q[escaped characters were decoded first.] pass:v,q[The search starts from the last param] pass:v,q[and proceeds backwards until either the] pass:v,q[key is found or the beginning of the] pass:v,q[range is reached, in which case `end()`] pass:v,q[is returned.] === Example [,cpp] ---- assert( (*url_view( "?first=John&last=Doe" ).params().find_last( "last" )).value == "Doe" ); ---- === Complexity pass:v,q[Linear in `this->buffer().size()`.] == Return Value * `iterator` == Parameters |=== | Name | Type | *key* | `string_view` | *ic* | `ignore_case_param` |===