forked from unidoc/unioffice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrangereference.go
33 lines (28 loc) · 947 Bytes
/
rangereference.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2017 FoxyUtils ehf. All rights reserved.
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased on https://unidoc.io.
package reference
import (
"errors"
"strings"
)
// ParseRangeReference splits a range reference of the form "A1:B5" into its
// components.
func ParseRangeReference(s string) (from, to CellReference, err error) {
sp := strings.Split(s, ":")
if len(sp) != 2 {
return CellReference{}, CellReference{}, errors.New("invalid range format")
}
fromRef, err := ParseCellReference(sp[0])
if err != nil {
return CellReference{}, CellReference{}, err
}
toRef, err := ParseCellReference(sp[1])
if err != nil {
return CellReference{}, CellReference{}, err
}
return fromRef, toRef, nil
}