#255 closed enhancement (duplicate)
Handling of unclean facets
Reported by: | teckart | Owned by: | Twan Goosen |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | VLO importer | Version: | |
Keywords: | Cc: |
Description
Request: Some elements that vary only in some aspects (linebreaks instead of space etc.) should be "unified" (for example s/\s{2,}/ /g)
Change History (9)
comment:2 Changed 12 years ago by
Component: | CenterRegistry → VLO |
---|---|
Owner: | changed from BSanchezRZG to herste |
comment:3 Changed 11 years ago by
Is a line break matched by \s? If not, do s/\n/ /g first before removing superflous spaces and tabs.
comment:4 Changed 11 years ago by
Component: | VLO web app → VLO importer |
---|
comment:5 Changed 11 years ago by
Owner: | changed from herste to Twan Goosen |
---|---|
Status: | new → assigned |
comment:6 Changed 10 years ago by
Milestone: | → VLO-3.1 |
---|---|
Type: | defect → enhancement |
comment:7 Changed 10 years ago by
Resolution: | → duplicate |
---|---|
Status: | assigned → closed |
comment:9 Changed 10 years ago by
Milestone: | VLO-3.1 |
---|
Note: See
TracTickets for help on using
tickets.
The example pattern does not match a line break or a tab without attached spaces, better is
s/\s+/ /g (or in the pattern idiom above s/\s{1,}/ /g ).