We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e5869 commit 3bbdda8Copy full SHA for 3bbdda8
src/bibx/__init__.py
@@ -28,7 +28,7 @@
28
"read_wos",
29
]
30
31
-__version__ = "0.6.2"
+__version__ = "0.6.3"
32
33
34
def query_openalex(
src/bibx/builders/wos.py
@@ -61,7 +61,7 @@ class WosCollectionBuilder(CollectionBuilder):
61
"""Builder for collections of articles from Web of Science (WoS) ISI files."""
62
63
ISI_LINE_PATTERN = re.compile(
64
- r"^(null|.)?((?P<field>[A-Z0-9]{2})| )( (?P<value>.*))?$"
+ r"^((null)+|.)?((?P<field>[A-Z0-9]{2})| )( (?P<value>.*))?$"
65
)
66
ISI_CITATION_PATTERN = re.compile(
67
r"""^(?P<AU>[^,]+),[ ] # First author
0 commit comments