Compare commits
No commits in common. "53a0d77ecb5f82c49403e686d3adb190dd1e147b" and "8dc59e114c3c62083fb99c54a4b5f1b9c92de6c8" have entirely different histories.
53a0d77ecb
...
8dc59e114c
@ -18,8 +18,8 @@ fn (m Memory) mib() f64 {
|
||||
fn Memory.from_string(s string) !Memory {
|
||||
mut re := regex.regex_opt(r'^(\d+)([a-zA-Z]+)$')!
|
||||
re.match_string(s)
|
||||
if re.groups.len != 2 {
|
||||
return error("unable to parse string '${s}'")
|
||||
if re.groups.len < 2 {
|
||||
return error('unable to parse string ${s}')
|
||||
}
|
||||
value := re.get_group_by_id(s, 0).f64()
|
||||
unit := dataunits.from_string(re.get_group_by_id(s, 1))!
|
||||
|
Loading…
x
Reference in New Issue
Block a user