![]() |
![]() |
3 Einträge, 1 Seite |
Quote1 Introduction and functional overview 7
2 Acronyms and abbreviations 7
3 Related documentation 8
3.1 Input documents 8
3.2 Related standards and norms 8
/^\d+(\.\d)*\s*(\w\s)*\s*\d+$/
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if ($string =~ /
^\s* # am anfang optionaler whitespace
(\d+ # eine oder mehrere ziffern
(?:\.\d+)* # punkt und ziffern, 0 oder mehrmals vorkommend
)
\s+
(.+?) # der gesammte rest
\s+
(\d+) # mehrere ziffern
\s*$ # optional: whitespace am ende
/x) {
my ($chapter, $headline, $page) = ($1, $2, $3);
# ...
} # if
![]() |
![]() |
3 Einträge, 1 Seite |