Well, two alternatives:
you have to specify a regex instead of a literal string and that regex must match all exceptions.
you use rewrite maps. I suggest you take a look at the documentation.
Using a regex:
# some expections
RewriteCond %{HTTPS} =off [NC]
RewriteCond %{REQUEST_URI} ^/(example[0-9]+.*)$ [NC]
RewriteRule ^(.*)$ https://example.com/%1 [R=301,L]
# the default rule: => add "www."
RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
I turned things around, to have the exception(s) at the start and a 'catch all' default at the end. Obviously you can add more exceptions by doubling the first lines. Or by altering the regex. Note that obviously the details of the regex required depend on the collection of exceptions you have. Only you know... I suggest you read the excellent manual.
Instead of a more complex regex you can also use logical operators inside the block of conditions:
# some expections
RewriteCond %{HTTPS} =off [NC]
RewriteCond %{REQUEST_URI} ^/(example1.*)$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/(example2.*)$ [NC]
RewriteRule ^(.*)$ https://example.com/%1 [R=301,L]
# the default rule: => add "www."
RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
Two important things that cannot be repeated often enough when talking about rewriting:
READ THE MANUAL! It is excellent, comes with precise descriptions and good examples.
If you have access to the main server configuration then USE REWRITE DEBUGGING:
The rewriting module defines the two commands RewriteLog and RewriteLogLevel for this. Configure some log file and a level of maybe 7. Then make a single request and monitor the new entries in the logfile (using tail -f /path/to/logfile). This helps to understand what happens inside the rewrite engine and where unexpected things start to happen.