There is no way to tell search engines that a page should only partially be indexed. You can either allow or disallow indexing of a whole page (robots.txt resp robots-meta). If content gets inserted from an external source which itself is blocked (e.g. the iframe method), it might work (never tested it, though).
Of course you could use some "hacks", e.g. to take advantage of search engines not being able (resp. not wanting) to index some elements or content inserted with JavaScript. But this might break at any time. Search engines will get better and might start to index such content in the future.
Anyhow, note that robots.txt is only an "polite request", not a strict prohibition. So there might always be spiders that don't follow your requests and index even blocked URLs.
Possible solutions (but none without trade-offs):
- permission system: make the postings of these specific users only readable to registered users, so search enginges can't see them at all. Trade-off: if a user (which doesn't disallow indexing of his content/name) quotes the text of such a restricted post, it's in the search index again.
- disallow indexing of the whole page, when such a specific user posted there. Trade-off: no search engine results for this thread
- anonymize the name of these specific users. Trade-off: community might suffer.
In general, I wouldn't implement such a "feature". Either it is a public board, or it is a private board. If it would be totally required, I'd only allow it for the thread starter. When a user creates a new thread, he is able to select if it's a private or a public thread. If it's a private thread, the whole page will get a noindex (or better: permission restriction). All other users get informed that they are posting on a private resp. public thread. So if someone wants to stay "private", he'd only post in private threads.