I want to input words from a file which are delimited by anything that isn't a letter. Is there an easy way to do this in C similar to using the \W predefined character classes in Java?
How should I approach this?
Thanks.
|
Character classes in general and \W specifically really aren't related to Java at all. They're just part of regular expression support, which is available for many languages, including GNU C. See GNU C library Regular Expressions. |
|||
|
|
|
You can make use of the For instance, |
|||
|
|
|
You can use
Edit: this should do the trick, |
|||||
|
fgetc(),isalpha(), possiblyungetc()– pmg Apr 17 '11 at 18:56