Hello Monks
I am developing a tool for analyzing different map-files.
I do this by reading-in the map-file generated by i.e. ARM compiler into an Array ( as usual ) and start analyzing line by line by going through the array.
A small state machine shall do the analysis. In case specific content is found the state machine jumps into different state. One of this state-changes shall be done when following line is recognised
" Code (inc. data) RO Data RW Data ZI Data Debug Object Name\n".
Now I want to have a regex which matches this and only this line, so I started doing this like that:
if ( $MapFile->[$iterator] =~m# Code \(inc\. data\) RO Data RW Data ZI Data Debug Object Name#){#...do something... [...]
I have escaped the braces and the dot but it does not match. ?? I want to keep it also quite simple so i have not used
\s+ in the regex, but even with
\s+ it does not match. I do not want to get any information from the expression so i am not using braces at all, just the match is quite important to me.
Any help is welcome!!
Best regards!
Tobias
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.