Jump to content

Recommended Posts

I have a bit of text as follows:

 

'this is my text. I want to (change this).'

 

Basically I want to search this var for brackets and then alter the information inside the brackets and finally output the new var.

 

I've been trying to use regex, but I'm not very good with the expressions :/

 

How would I do this?

Link to comment
https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/
Share on other sites

Yes, I think you would need to use regex and javascripts replace function.

 

Without testing I think it would go something along these lines:

 

var inputText = 'this is my text. I want to (change this).';
var outputText = inputText.replace(/\([^)]*?\)/g, "(new variable)");

 

Hope this helps,

Joe

Use the javascript match to search for brackets, and only execute the replace if they are found. Something along the lines of

 

var inputText = 'this is my text. I want to (change this).';
if(inputText.match(/\([^)]*?\)/g))
   {
        var outputText = inputText.replace(/\([^)]*?\)/g, "(new variable)");
   }
else
   {
       alert('No brackets found');
   }

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.