Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

ok, so I have this small block of text:

function onfocus(event) {
  if ($(this).val() == "Some Arbitrary Text") {$(this).val("");}
}

Using jQuery or JavaScript, I would like to find teh "Arbitrary Text". This text block is constant, with the exception of the "Arbitrary Text". Ideally, I would like a way to parse it without using complicated loops and regex.

To help clarify: The fact that the text is javascript plays no part. Think of it as just text I am parsing. The "Arbitrary Text" can be anything, I am trying to find the text between the 2 quotes.

share|improve this question
the text to search into (aka "the haystack") is actually the whole chunk of code or the "Some Arbitrary Text" part? – pixeline Nov 5 '09 at 22:35
I am trying to find the "arbitrary text" in the whole chunk of code – Russ Bradberry Nov 5 '09 at 22:37
@downvoter, why don't you give an explanation as to why you downvoted so that I can address the issue. – Russ Bradberry Nov 5 '09 at 22:38
Why do you want to do that? You don't have write access to the chunk of code itself? you could store that arbitrary text inside a variable and manipulate it to your heart's content. I don't get what you're trying to do. – pixeline Nov 5 '09 at 22:39
1  
if your inputs are dynamic, you mean they are added via ajax or injection. In such case, right after the injection, initiate a variable containing their default value, then check the control's value against that variable onBlur. Easier like that... – pixeline Nov 5 '09 at 22:50
show 3 more comments

6 Answers

up vote 3 down vote accepted

Not that I understood the question completely, but maybe

var s = 'foo "quoted" bar';
var m = s.match(/"(.*?)"/);
alert(m[1]); // m[1] = quoted

Of course, this is also possible without regexps, but it would make no sense - this is what regexps are for

share|improve this answer
Agreed, learn to use regex. – Beetny Nov 5 '09 at 23:00
it seems regex is the only way to go. i thought it would be more complicated than this. How can I get this to return the text without the quotes? – Russ Bradberry Nov 5 '09 at 23:21
@Russ: as per my answer, to get rid of quotes: string = string.replace(/"/g, ''); – Benji XVI Nov 5 '09 at 23:22
1  
You missed a semicolon on line 2. – Ayush Pateria Jan 1 '12 at 13:19
A couple semicolons (fixed). Just a tiny note, AFAIK some browsers will allow you to DO Javascript without semicolons, but it's still a very good idea to include them. – David Is Not Here Nov 19 '12 at 17:15

Your question is a bit confusing - are you looking to see if a large string contains a smaller string? If so, use the indexOf function like this:

function onfocus(event) {
    if ($(this).val().indexOf("Some Arbitrary Text") > 0) {
        $(this).val("");
    }
}
share|improve this answer
no, the arbitrary text changes. I need to find it to evaluate it. – Russ Bradberry Nov 5 '09 at 22:35
var stringToSearchFor = 'if ($(this).val() == "';
var haystack = 'put your javascript code here';

var startPosition = haystack.indexOf(stringToSearchFor);
share|improve this answer
This is close, but I need to pull that text out of the code block and be able to put it into a variable, but this gets me on the right track – Russ Bradberry Nov 5 '09 at 22:48

I suppose you are actually displaying some kind of "invite" message inside an input element like, for example: "put your name here" inside a text input. Of course, you want this invite to disappear as soon as the user focuses on that input, and have it reappear if the user didn't put anything in the input. The intention is right, but your approach is a bit dirty and unreliable. I would use variables instead.

Since your inputs are added dynamically, simply add the variable inside a < script> tag right after the html injection. for example:

document.write('<input id="controller24" type="text" name="email" value="Put your name here"/><script>var controller24Default="Put your name here";</script>');

After that, you should bind that controller a generic function that reconstruct the default variable out of the input id value. var thisDefaultValue = eval("controller"+this.id+"Default"). Just an idea.

share|improve this answer
var text = $(this).val().replace(/"(.*?)"/ig, "$1");
share|improve this answer

If I'm interpreting your question correctly, you just need a regular expression:

astring = "oh hai I'm a string my name is \"Arbitrary Text\"";
results = astring.match(/"[\d\w\s]*"/g);

The regexp /"[\d\w\s]*"/ will match any digit, word or whitespace characters appearing between inverted commas. The suffix g indicates the search is global, and returns an array of all matches. Removing the g will simply return the first result.

In this case match() returns a 1-member array: ['"Arbitrary Text"']. Yes, it includes the inverted commas. To remove them: string = string.replace(/"/g, '');

Null is returned if no match is found in the text.

Good javascript-regexp cheatsheet here.

Edit

Now that we understand your rationale for doing this, I have to recommend against this method.

There are any number of ways to compare a form input's text to its default value. You could store the default value in a global JS variable, for instance, or as an attribute of the html element itself.

That is not to say your method is "wrong", but this code has a serious aroma to it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.