Compare commits
	
		
			2 Commits
		
	
	
		
			8dc59e114c
			...
			53a0d77ecb
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 53a0d77ecb | |||
| f4fe18ed49 | 
@@ -18,8 +18,8 @@ fn (m Memory) mib() f64 {
 | 
				
			|||||||
fn Memory.from_string(s string) !Memory {
 | 
					fn Memory.from_string(s string) !Memory {
 | 
				
			||||||
	mut re := regex.regex_opt(r'^(\d+)([a-zA-Z]+)$')!
 | 
						mut re := regex.regex_opt(r'^(\d+)([a-zA-Z]+)$')!
 | 
				
			||||||
	re.match_string(s)
 | 
						re.match_string(s)
 | 
				
			||||||
	if re.groups.len < 2 {
 | 
						if re.groups.len != 2 {
 | 
				
			||||||
		return error('unable to parse string ${s}')
 | 
							return error("unable to parse string '${s}'")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	value := re.get_group_by_id(s, 0).f64()
 | 
						value := re.get_group_by_id(s, 0).f64()
 | 
				
			||||||
	unit := dataunits.from_string(re.get_group_by_id(s, 1))!
 | 
						unit := dataunits.from_string(re.get_group_by_id(s, 1))!
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user