Tagged Questions
0
votes
2answers
78 views
Boolean function
I am trying to use a find_if Boolean function to return true if:
Z is =<10;
name="john" (all lower case)
My code:
/* predicate for find_if */
bool exam_pred(const exam_struct &a)
{
if ...
4
votes
2answers
57 views
Why the compilation error for boolean and String
I have the below code
public class Test {
public static void main(String[] args) {
Integer i1=null;
String s1=null;
String s2=String.valueOf(i1);
System.out.println(s1==null+" ...
1
vote
4answers
92 views
How to convert a search string to a boolean condition?
I have a search criteria stored in a string:
string Searchstr = "(r.Value.Contains("PwC") || (r.Value.Contains("Canadian") && r.Value.Contains("thrive"))) || (r.Value.Contains("Banana") ...
0
votes
2answers
74 views
Checking characters of a string using boolean method of the same class
This is one programming task i'm working toward to. I'm currently struggling with the main method of the code. Supposedly, what i am trying to do is to use the isDNASequence method to check the ...
-2
votes
1answer
69 views
Calling/using a method in the same class [closed]
Here i have some problem with this. In the code there are 2 methods: isDNASequence and getDistances. Now i already filled in what i think should isDNASequence should be but i'm clueless on how to get ...
2
votes
3answers
168 views
Palindrome Checker Java boolean insight
So I'm making a palindrome checker in java, and i've seemed to hit a roadblock this is my code so far:
public class StringUtil
{
public static void main(String[] args)
{
...
4
votes
8answers
130 views
string to bool inline conversion
What I currently have:
bool okPress = !string.IsNullOrEmpty(Ctx.Request["okPress"]) &&
Convert.ToBoolean(Ctx.Request["okPress"]);
Correct me if I'm wrong here, but wouldn't this throw a ...
0
votes
1answer
72 views
comparison between three parameters
I have a function in python which says I gotta take in 3 parameters and the word has to be in the hand and the word also has to be in the wordlist
def isValidWord(word, hand, wordList):
d = ...
5
votes
2answers
130 views
Boolean and String Overloads of the Assignment Operator (C++)
I am defining multiple overloads of the assignment operator as follows:
Foo.h
class Foo
{
private:
bool my_bool;
int my_int;
std::string my_string;
public:
Foo& operator= (bool ...
5
votes
1answer
113 views
C++ Method overload not working
I am trying to write a C++ class that has some overloaded methods:
class Output
{
public:
static void Print(bool value)
{
std::cout << value ? "True" : "False";
}
...
0
votes
4answers
96 views
Bool vals won't print out in console
I am interested in a very simple string verification problem to see if the starting character in a string starts with an upper case letter and then have the console to display true or false. From my ...
5
votes
2answers
118 views
Coldfusion string == true OR empty == false?
I am used to using PHP and JavaScript but I have now begun working on a project in Coldfusion.
In PHP I am used to a string being "truthy" and empty/null being "falsy".
This doesn't seem to hold ...
2
votes
7answers
134 views
Checking to see if a string is an integer - Java [duplicate]
Possible Duplicate:
Determine if a String is an Integer in Java
I have found several links related to my question, but they were not exactly what I was looking for. I would prefer to use a ...
3
votes
3answers
212 views
primitive-boolean To String concatenation/conversion
how does this work? I can't seem to find an answer.
boolean bool=true;
System.out.println("the value of bool is : " + true);
//or
System.out.println("the value of bool is : " + bool);
What are the ...
2
votes
4answers
355 views
Function return string or boolean
I want a function to return a String or Boolean. Something like this:
Public Function GetString(Byval What As String) 'As... someting?
If (What = "A") Then
Return "String to return"
...
1
vote
2answers
74 views
var_dump says bool but returning a string -php
i'm trying to check my email with curl.
I've got a function which connects to gmail:
function check_email($url)
{
// sendRequest
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, ...
-5
votes
1answer
99 views
Put string in 2D boolean Array Java [closed]
I am just wondering if anyone could show me some code as to how I would put this string in a 2D boolean array and print it out
Example: “0-1 0-2 1-2 1-3 2-3” , however the string could be more ...
-1
votes
6answers
143 views
C# Can a comparison in a String value return a Boolean value. eg. “5 < 10” return true
Is there a way a comparison in a string value can return a Boolean value. Example.
If (5 > 5000) would obviously return a false value. But what i wanted to do is have the "5 > 5000" return a false ...
1
vote
1answer
68 views
Type conversion using templates has odd behaviour
I have a function that aims to convert a string from a config file in to various different types. A special case has needed to be inserted to handle bool's as "false" equates to true when using a ...
0
votes
2answers
133 views
String Boolean in Bash
I'm trying to create a script that takes two parameters: a word and a character, then returns how many times the character appears in the word.
Here is my code:
#!/bin/bash
((counter=0))
for i in ...
-3
votes
5answers
172 views
Writing a true/false statement for Javascript [closed]
I need desperate help with this question:
Write a Javascript expression that produces true if a string s contains a comma and false otherwise.
1
vote
2answers
87 views
How can I query for “falsey” values in MongoDB?
I want to query a Mongo collection for documents where a specific field is either missing or has a value that would evaluate to false in Python. This includes atomic values null, 0, '' (the empty ...
0
votes
2answers
646 views
Java: for loop crashing using string charAt method
I have a bug in this block of code. The debugger suggest it´s cause is this line of code char chr = getSecretWord.charAt(i);
What this code does is look for a match between userInput and ...
-3
votes
2answers
230 views
String Boolean error java
Can somebody tell me what I am doing wrong over here,
(Util.parseBoolean((String)request.getAttribute("testVal"), false))
I am getting this error.
java.lang.ClassCastException: java.lang.Boolean ...
0
votes
4answers
234 views
Counting dashes within 2 separate strings, returning true if there are the same amount of dashes in the same positions of each string?
I have to write a program in Java that compares two strings for dashes. The test only returns true if each string has the same amount of dashes in the same position in the strings.
Example:
...
1
vote
3answers
76 views
Issue with simple python program
I have a program to quiz me on how far planets are from the sun. The only problem is, no matter what answer I put it always shows up as correct. Here is a link to my code: ...
1
vote
9answers
321 views
Concatenate a string and a boolean in C++?
I'd like to do something like the following:
bool b = ...
string s = "Value of bool is: " + b ? "f" : "d";
All of the examples I've seen use cout, but I don't want to print the string; just store ...
0
votes
1answer
43 views
Comparison woes
This is driving me crazy! I have a form and am supposed to do some validation on a text input called "range".
function splitRange($range){
if($range == ''){
$returnedValue = '';
...
2
votes
4answers
427 views
How to cast string to boolean in Clojure
I have following statements
(if "true" (println "working") (println "not working"))
result is - working
(if "false" (println "working") (println "not working"))
result is - working
Both the ...
0
votes
5answers
62 views
Look for a word in a string PHP
How to check if specific work available in a string? Let's say I have a string like this
wrong=name&pass&email
so I want to check if name, pass or/and email are in the string. I need the ...
1
vote
6answers
128 views
Cannot to replace a string to another (boolean value) - Java
boolean b1 = false;
boolean b2 = true;
String s = new String(b1+""+b2);
s.replaceAll("false", "f");
s.replaceAll("true", "t");
Nothing is replaced. I still get "false true".
I want to replace all ...
5
votes
3answers
159 views
Javascript TRUE and “true” why someone uses string instead of boolean?
I see in some javascript codes that people write something like this:
var myVar = "true";
//...
if(myVar == "true") {
//...
}else{
//...
}
Why people don't use TRUE or FALSE? As far as ...
6
votes
1answer
82 views
const string plus boolean to pluralize in C
I'm surprised string plus boolean has similar effect of ternary operation:
int apple = 2;
printf("apple%s\n", "s" + (apple <= ...
1
vote
1answer
2k views
PL/SQL Convert String To Boolean
I have an EXT JS page which sends a form with some values. The values are all sent in string and some sent as boolean. It is calling a PL/SQL procedure where the params are all varchar. For some ...
-1
votes
1answer
92 views
Method always returns true
I have a method that checks for achievements and I am trying to get it to work properly. It takes a String and converts it to a long and then checks against a String value in the database ( Which is ...
0
votes
1answer
120 views
Cast exception issue in map with values of type Object
Follow the code block.
Map<String, Object> personDetailMap = new HashMap<String, Object>();
personDetailMap.put("name", "isuru");
personDetailMap.put("is-male", true);
...
1
vote
3answers
2k views
How do I concatenate a boolean to a string in Python?
I want to accomplish the following
answer = True
myvar = "the answer is " + answer
and have myvar's value be "the answer is True". I'm pretty sure you can do this in Java.
2
votes
2answers
350 views
How do I parse a string with a customized logical condition?
I have a file which contains many rows of condition strings, and I need to read that file and convert the string of logical conditions into actual code. There are several parameters, and each line of ...
0
votes
3answers
122 views
Python: Determine String Formatting With a boolean?
I'm new to Python and I am wondering what the best way is to format a string with the parts inserted determined by booleans.
I have a long html form string that can have error messages. I only want ...
2
votes
4answers
94 views
How can the same expression be evaluated differently?
Can someone please shed some light on this sick sorcery:
System.out.println(("a".equals("a"))); //true
System.out.println(("a".equals("а"))); //false
System.out.println(("Joachim ...
3
votes
2answers
393 views
How do I convert/cast a string into a bool in Tcl?
I was expecting
if {[some_func $some_args]} {
....
}
to eval true and simply work as soon as some_func returns some string. However there are errors.
Learning it the hard way, Tcl accepts only ...
2
votes
2answers
304 views
check integrity of brackets in special formula
my program should print a message on the screen if the formula that the user entered is good for the terms(you can only use digits and letters, u can't start with '(' and like mathematical formula, ...
0
votes
0answers
68 views
Why does this string declaration not result in a bool(true)?
Why would this string declaration not result in a bool(true)?
list.txt contains one word per line.
The code is as follows:
$db = file("words.txt");
$text = substr($temp = ...
-2
votes
5answers
85 views
Enter a String and see if the String matches with the any of the Strings in an array (JAVA) [closed]
I have created a class with the objective of having a method, within that class that receives a String x, and than it goest through a loop to see if the string received matches with any of the Strings ...
1
vote
1answer
1k views
How do you convert a String into a Boolean in ActionScript?
I have the following code:
var bool:String = "true";
Without an if block or switch statement, how can this be converted into a Boolean object?
1
vote
1answer
86 views
bool function will not properly compare arrays
Working on a small program that will take a string from a user and see if it is a palindrome. (A phrase that is spelled the same way backwards, like "Never odd or even") I have already built functions ...
0
votes
3answers
707 views
Conversion from string “Y” to type 'Boolean' is not valid
I am learning visual basic online, however we just got a teacher switch and they have not replied to my question. So I figured I might as well ask it here. We where asked to make a computer ...
5
votes
4answers
900 views
Convert List<boolean> to String
I got a boolean list with 92 booleans, I want the list to be converted to a string, I thought I ll take 8 booleans(bits) and put them in a Byte(8 bits) and then use the ASCII to convert it the byte ...
5
votes
10answers
335 views
strange behavior of == in Java
I observed a strange behavior == operator in java. I am trying to print the out put as follows
String str1 = "Rajesh";
String str2 = "Rajesh";
System.out.println("Using equals() str1 and str2 Equals ...
7
votes
4answers
3k views
In javascript, is an empty string always false as a boolean?
in javascript,
var a = '';
var b = (a) ? false : true; // fixed!
var b will be set to true.
is this a defined behavior that can be relied upon?


