Demo using the currency formatting style

HTML

<span class="sweprice">100000000</span>

SCSS

@decimal-format sweprice {
  grouping-separator: " ";
  decimal-separator : ","
}
.sweprice {
      number-format: "### ##0,00", "sweprice";
  }

.sweprice {
      number-format: "0,00", "sweprice";
  }

JavaScript

console.log(new Intl.NumberFormat("en", {
    style: "currency",
    currency: "GBP"
}).format(100000000)); // £100,000,000.59