I have this string $183,361 [10.00 FTE].
I want to trim it to only keep [10.00 FTE]
I have only been able to remove the square brackets with /\[(.*?)\]/
.
This is how I am displaying the string on screen
<>
{rowData.Q1.replace(*Regex*, "")}
</>
What regex expression will help with getting the output I want?