fixed regex for DOI cleaning

This commit is contained in:
Claudio Atzori 2021-08-02 13:39:00 +02:00
parent 269e166661
commit b99477e137
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import eu.dnetlib.dhp.schema.oaf.StructuredProperty;
public class CleaningFunctions {
public static final String DOI_PREFIX_REGEX = "(^10\\.|\\/10.)";
public static final String DOI_PREFIX_REGEX = "(^10\\.|\\/10\\.)";
public static final String DOI_PREFIX = "10.";
public static final Set<String> PID_BLACKLIST = new HashSet<>();