Folks,
I'm trying to write an expression to pickup the following line in a data file:
0 0 0 360 0.2 12 9.1
The following expression works but I’m not sure why:
(/^\s([0-9]{1,}\s{5})/)
I thought this expression would work but it doesn’t
(/^\s([0-9]{1,}\s){4}[0-9]{1,}\.([0-9]{1,}\s){2}[0-9]{1,}\.[0-9]{1,}/)
Need help,
Stickybit.
I'm trying to write an expression to pickup the following line in a data file:
0 0 0 360 0.2 12 9.1
The following expression works but I’m not sure why:
(/^\s([0-9]{1,}\s{5})/)
I thought this expression would work but it doesn’t
(/^\s([0-9]{1,}\s){4}[0-9]{1,}\.([0-9]{1,}\s){2}[0-9]{1,}\.[0-9]{1,}/)
Need help,
Stickybit.