mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2025-01-12 05:58:23 +01:00
Fix problem with xyz geometry with the line containing the number of atoms have right extra space are not readed correctly
This commit is contained in:
parent
b16bc38a72
commit
b535c5dca6
@ -21,7 +21,7 @@ class Geometry {
|
||||
static loadXYZString(text) {
|
||||
var lines = text.split("\n")
|
||||
var indexes = lines.findAllIndexes((line) => {
|
||||
return line.match(/^\d+$/)
|
||||
return line.match(/^\d+\s*$/)
|
||||
})
|
||||
indexes.push(lines.length)
|
||||
var geoms = []
|
||||
|
Loading…
Reference in New Issue
Block a user