Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate
Programming

I'll answer questions. :)

bart
Wednesday, November 3, 2010 - 08:41
bart's picture

In addition to being an art geek, a web geek, and a geek in general, I'm also a big programming geek with a fair amount of experience programming game engines.  I'd be happy to answer any beginner programming questions you have, particularly pertaining to C, C++, PHP, and JavaScript.  I can probably answer basic questions about other languages too. :)

  • Log in or register to post comments
jaderamiso
joined 14 years 7 months ago
Wednesday, November 3, 2010 - 18:27

wow. at last a programming sub-forum :)

  • Log in or register to post comments
Tempel
joined 14 years 8 months ago
Thursday, November 4, 2010 - 21:04

I'm fairly fluent in Python (but unfortunately, that's about it).  If there are any Python questions to which I don't know the answers, I'll try to learn them for you.

  • Log in or register to post comments
Buch
joined 14 years 8 months ago
Friday, November 5, 2010 - 07:27
Buch's picture

How can I use regular expressions in c++?


  • Log in or register to post comments
Tartos
joined 14 years 8 months ago
Friday, November 5, 2010 - 07:56

I have never used regular expressions in C++, but boost provide a regex module that seems solid.

  • Log in or register to post comments
Buch
joined 14 years 8 months ago
Friday, November 5, 2010 - 07:57
Buch's picture

Could u give me the link for this module? I haven't a fast connection, so looking for it would me take a lot of time...


  • Log in or register to post comments
bart
joined 13 years 10 months ago
Friday, November 5, 2010 - 08:07
bart's picture

 

Here's the main page: http://www.boost.org/

The regex library documentation is here: http://www.boost.org/doc/libs/1_44_0/libs/regex/doc/html/index.html

I believe you download all of the boost libraries as a whole.  I recommend looking through them, as there's some other nice stuff in there.

 

 

  • Log in or register to post comments
Buch
joined 14 years 8 months ago
Friday, November 5, 2010 - 08:08
Buch's picture

thanks


  • Log in or register to post comments
ceninan
joined 16 years 3 weeks ago
Friday, November 5, 2010 - 10:47
ceninan's picture

PCRE is a popular alternative for those who prefer C or easy binding to other languages.

 

EDIT: PCRE had C++ bindings made by Google in 2006 (pcrecpp) - they are now part of the distribution.

  • Log in or register to post comments
Pompei2
joined 15 years 5 months ago
Friday, November 5, 2010 - 13:14
Pompei2's picture

stop using the external libraries, start using C++0x! It has builtin regular expressions. MSVC++ supports them already, libstdc++ is working on it (it's the last big feature they're missing unfortunately)

  • Log in or register to post comments
CruzR
joined 14 years 3 months ago
Saturday, November 12, 2011 - 15:18
CruzR's picture

Is it possible to have abstract template classes in C++ ? Something like this?

 

EDIT: I've talked with Philip` and peachykeen about this on IRC. The short answer is that it's not possible because of conflicting vtables and stuff. However, here's a workaround.

  • Log in or register to post comments