4DJWIQSI4HHSSWX5JSGZXW7L77NCUWFC23TWHMBPWYRNYIO44EWAC
let amount_balance = match record.saldo {
Some(saldo) => Some(
saldo
.replace(" kr", "")
.replace(",", ".")
.chars()
.filter(|c| c.is_ascii())
.filter(|c| !c.is_whitespace())
.collect::<String>()
.parse::<f32>()
.unwrap(),
),
None => None,
};
let amount_balance = record.saldo.map(|saldo| {
saldo
.replace(" kr", "")
.replace(",", ".")
.chars()
.filter(|c| c.is_ascii())
.filter(|c| !c.is_whitespace())
.collect::<String>()
.parse::<f32>()
.unwrap()
});