/    Sign up×
Community /Pin to ProfileBookmark

plz find error…

Hi,
Can you plz tell me – what’s wrong with the following code

while( str.charAt(cnt)!= ‘)’||str.charAt(cnt)!= ‘ ‘)

I need to execute the loop until it gets space or closing bracket.

Regards,
DichanZZ

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@ZnupiSep 22.2007 — Try
while( str.charAt(cnt)!= ')' [b]&&[/b] str.charAt(cnt)!= ' ')
?
Copy linkTweet thisAlerts:
@hoangkcSep 22.2007 — as logic language is different from normal one,

you said you need to execute the loop until it gets space OR closing bracket.

the space character, will not match [I][COLOR="Red"]str.charAt(cnt)!= ' '[/COLOR][/I] but, obviously, match [COLOR="Red"][I]str.charAt(cnt)!= ')'[/I][/COLOR], therefore, [B][COLOR="Red"]||[/COLOR][/B] will return true.

so, in logic language it should be AND.
×

Success!

Help @dichanz spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.6,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...