On Wed, Nov 2, 2016 at 9:07 PM, Jim Michaels wrote:
> #include
> #include
> int main(void) {
> std::cout<<(std::regex_match("abcdefg",std::regex("def",std::regex_constants::extended))?"true":"false")< return 0;}
>
> corrected some more bugs in that example and got "false". not sure why
> this is
On Wed, Nov 2, 2016 at 8:09 PM, Jim Michaels wrote:
> namespace str {
> std::string str::localestringlower(std::string s) {
> //not sure if std::locale:: will solve conflicting namespaces
> between and
> for (size_t i=0; i < s.size(); i++) {
> s[i]=std
I get enough XP boxes coming my way that spare my backside that I wish XP
support would not stop. still trying to get my win7 box up and going again
after hw failure.
On Wed, November 2, 2016 4:27 pm, JonY wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
>
>
> On 11/2/2016 16:56, Adri
#include
#include
int main(void) {
std::cout<<(std::regex_match("abcdefg",std::regex("def",std::regex_constants::extended))?"true":"false")< namespace str { std::string str::localestringlower(std::string s) {
> //not sure if std::locale:: will solve conflicting namespaces
> between and for (siz
namespace str {
std::string str::localestringlower(std::string s) {
//not sure if std::locale:: will solve conflicting namespaces
between and
for (size_t i=0; i < s.size(); i++) {
s[i]=std::tolower(s[i]);
}
return s;
}
}
here
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
On 11/2/2016 16:56, Adrien Nader wrote:
> Hi,
>
> A small thread hijack.
>
> On Mon, Oct 31, 2016, Martell Malone wrote:
>> Hey guys,
>>
>> My only concern is if this is supported on windows xp.
>> https://msdn.microsoft.com/en-us/library/2093ets
Hi,
A small thread hijack.
On Mon, Oct 31, 2016, Martell Malone wrote:
> Hey guys,
>
> My only concern is if this is supported on windows xp.
> https://msdn.microsoft.com/en-us/library/2093ets1.aspx
> MSDN has a doc version from VS2005.
> I don't see anything about a min windows version there.
>