14 std::string_view strView(stringNumber);
17 if (not strView.empty() && strView[0] ==
'+')
19 strView.remove_prefix(1);
22 auto [p, ec] = std::from_chars(strView.data(), strView.data() + strView.size(), number);
24 if (ec == std::errc() && p == strView.data() + strView.size())