Skip to content

Tag: replace

Regex to select words with spaces for subsititution

I have string in JS which where I need to add ‘ to the values. Example: task: task one, client: Mr jhon will be converted to task:’task one’, client: ‘Mr Jhon’ Think of these string as user entered search query. This is then sent to the backed for the searching. The values need t…

remove last directory in URL

I am trying to remove the last directory part of an URL. My URL looks like this: https://my_ip_address:port/site.php?path=/path/to/my/folder. When clicking on a button, I want to change this to https://my_ip_address:port/site.php?path=/path/to/my. (Remove the last part). I already tried window.location.replac…