Author |
Message |
testy1
Involved


Joined: Apr 06, 2008
Posts: 484
|
Posted:
Tue Feb 17, 2009 6:12 pm |
|
I assume I would use reg ex for this but anyway here we go
if my var holds a javascript string (for adding custom code dynamically), how can i check the strings ends with a semi-colon.
example:
Code:
$myVar = 'this.insertBefore( elem, this.firstChild );';
|
it seems php has not yet built in the function
Code:
$myVar = Check_For_Stupid_SemiColon($myVar);
|
 |
|
|
|
 |
Palbin
Site Admin

Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Tue Feb 17, 2009 8:34 pm |
|
Code:
if (!preg_match("/;\z/", $myVar)) {
$string = $myVar . ';';
}
|
|
_________________ "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan. |
|
|
 |
Palbin

|
Posted:
Tue Feb 17, 2009 8:35 pm |
|
|
|
 |
testy1

|
Posted:
Tue Feb 17, 2009 9:31 pm |
|
ok thanks  |
|
|
|
 |
Palbin

|
Posted:
Tue Feb 17, 2009 9:32 pm |
|
The code I posted above was a little off.
Code:
if (!preg_match("/;\z/", $myVar)) {
$myVar = $myVar . ';';
}
|
|
|
|
|
 |
testy1

|
Posted:
Wed Feb 18, 2009 5:21 am |
|
I just had a thought
I am getting these values from the database and they are inserted via a textarea.If they are entered on a per line basis it should be fine but if not it may cause issue's.
e.g.
Code:
this.insertBefore( elem, this.firstChild );
this.insertBefore( elem, this.firstChild );
this.insertBefore( elem, this.firstChild );
this.insertBefore( elem, this.firstChild );
|
Code:
this.insertBefore( elem, this.firstChild );this.insertBefore( elem, this.firstChild );this.insertBefore( elem, this.firstChild );this.insertBefore( elem, this.firstChild );
|
any ideas on that. |
|
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Wed Feb 18, 2009 6:36 am |
|
You almost need a javascript syntax checker (but I don't know of one off the top of my head). There are so many permutations that I am concerned about regex being able to cover them all. But, if there isn't such a thing out there, you may be stuck with writing maybe a series of regex's. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
testy1

|
Posted:
Wed Feb 18, 2009 3:45 pm |
|
or I could just enter them one per line  |
|
|
|
 |
montego

|
Posted:
Wed Feb 18, 2009 8:57 pm |
|
You just had to ask didn't you...  |
|
|
|
 |
testy1

|
Posted:
Thu Feb 19, 2009 2:17 am |
|
lol  |
|
|
|
 |
|