Opened 11 years ago

Closed 10 years ago

Last modified 9 years ago

#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:1 Changed 11 years ago by knappen

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 ).

Last edited 11 years ago by knappen (previous) (diff)

comment:2 Changed 11 years ago by dietuyt

Component: CenterRegistryVLO
Owner: changed from BSanchezRZG to herste

comment:3 Changed 11 years ago by knappen

Is a line break matched by \s? If not, do s/\n/ /g first before removing superflous spaces and tabs.

comment:4 Changed 10 years ago by twagoo

Component: VLO web appVLO importer

comment:5 Changed 10 years ago by latadmin@mpi.nl

Owner: changed from herste to Twan Goosen
Status: newassigned

comment:6 Changed 10 years ago by Twan Goosen

Milestone: VLO-3.1
Type: defectenhancement

comment:7 Changed 10 years ago by haaf@bbaw.de

Resolution: duplicate
Status: assignedclosed

comment:8 Changed 10 years ago by Twan Goosen

-> #688

comment:9 Changed 9 years ago by Twan Goosen

Milestone: VLO-3.1
Note: See TracTickets for help on using tickets.