I have following string:
text = '20 as a % of 50'
I need to replace it using a regular expression, the result should be:
'20 / 50 * 100'
How can I do this?
|
I have following string:
I need to replace it using a regular expression, the result should be:
How can I do this? |
||||
|
|
I created an example here: http://regexr.com?2tfam You can match with
I also created a jsFiddle. EDIT: If your text between the numbers will change, you can use this regex:
It assumes that the operator is % and between the numbers only letters and spaces can occur. |
|||||
|
|
This should help you,
|
|||
|
|