On my Ubuntu system, ps says it's in line with these standards:
STANDARDS
This ps conforms to:
1 Version 2 of the Single Unix Specification
2 The Open Group Technical Standard Base Specifications, Issue 6
3 IEEE Std 1003.1, 2004 Edition
4 X/Open System Interfaces Extension [UP XSI]
5 ISO/IEC 9945:2003</blockquote>
But you might consider offloading the problem to pgrep, which is already maintained and already understands about process names and such. It gives you a much, much simpler output: By default, just the matching process IDs, one per line, like this:
$ pgrep apache
3990
22244
22388
22391
22476
Doesn't get easier to parse than that. If you need to see more, you might consider the -l flag:
$ pgrep -l apache
3990 apache2
22244 apache2
22388 apache2
22391 apache2
22476 apache2
Also consider looking at the /proc filesystem, which is where ps looks for its data.