Так что хотите разделить значение на что-то внутри строки FormattedMessage. Как у меня.
en: {
'price': "Unit price is {price}",
'priceInThousands': "Unit price is {price/1000} Thousand",
}
<FormattedMessage id={'price'} values={{price: 1000}}/>
<FormattedMessage id={'priceInThousands'} values={{price: 1000}}/>
, поэтому первый должен отображать
<span> Unit price is 1000 </span>
, а другой должен
<span> Unit price is 1000 Thousand </span>
как мне это сделать? и я хочу сделать это внутри 'priceInThousands': "Unit price is {price/1000} Thousand"