Namespaces
Variants
Views
Actions

std::sub_match<BidirIt>::length

From cppreference.com
< cpp‎ | regex‎ | sub match
difference_type length() const;

[edit] Parameters

(none)

[edit] Return value

Returns the number of characters in the match, i.e. std::distance(first, second) if the match is valid, 0 otherwise.

[edit] Complexity

Constant.