rockinaway Posted December 12, 2011 Share Posted December 12, 2011 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? Quote Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/ Share on other sites More sharing options...
rockinaway Posted December 12, 2011 Author Share Posted December 12, 2011 Any help? Quote Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297194 Share on other sites More sharing options...
joe92 Posted December 12, 2011 Share Posted December 12, 2011 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 Quote Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297278 Share on other sites More sharing options...
rockinaway Posted December 12, 2011 Author Share Posted December 12, 2011 Okay, thanks. How would I search the string first though? And then if the brackets are there, replace the content? Quote Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297305 Share on other sites More sharing options...
joe92 Posted December 12, 2011 Share Posted December 12, 2011 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'); } Quote Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297311 Share on other sites More sharing options...
rockinaway Posted December 12, 2011 Author Share Posted December 12, 2011 Absolutely perfect! Thank you! Quote Link to comment https://forums.phpfreaks.com/topic/252990-jquery-search-for-brackets/#findComment-1297317 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.