Search code examples
cflex-lexerlexical-analysislexical

Creating simple rule in flex


I need to make a rule in my lex file that will identify the start of a newline and a sequence of spaces I did this ^( )* but the compiler says it is wrong what is the right way to define it?


Solution

  • Try something like this:

    ^[\n\t ]+