Combination of several programming symbols and values intending to produce a result

learn more… | top users | synonyms

0
votes
1answer
18 views

How to match all between two words with regular expression

I have this: ID 560 Spec This ... bla bla blah... blah... +#@% bla bla 43 bla ~ Category Other Price $259.95 ID 561 Spec more blah blah... blah... blah... @#$^Y% bla bla bla ...
0
votes
1answer
16 views

XSLT expression ..IF NULL or EMPTY return all rows

I have this XPath expression which works to filter rows with a Contains wildcard string But I would like it to return ALL rows initially, when search is null or empty. And I need to do it in line if ...
0
votes
2answers
27 views

Mule - test an http get request with choice component

I have the following flow : <flow name="SOAPWebService" doc:name="SOAPWebService"> <http:inbound-endpoint address="http://localhost:8088/esb/" exchange-pattern="request-response" ...
0
votes
2answers
37 views

Expression.Equal - How to Compare Nullable and Non Nullable fields?

I have a nullable datetime field and I have to convert the string date field to a nullable datetime type (using Expression)....I did this using the below. ...
0
votes
1answer
5 views

How do I change the canvas size on expression blend sketchflow?

How do I change the default canvas size, it's simply too small for my prototype. Help!!!
0
votes
1answer
16 views

Use Expression in app.config

I have a user setting that I have added on the Settings page under the project's Properties: What I would like to do is set the default value to an expression pointing to a sub-directory of the ...
0
votes
1answer
32 views

Using Expression to 'Cast' Func<object, object> to Func<T, TRet>

I've written a little function that attempts to do the following dynamically: Func<object, object> fa = i => Convert.ChangeType(i, typeof (string)); Func<int, string> ...
0
votes
1answer
39 views

Why is “int sum=ch1+ch2+ch2” not giving overflow when right-side operands are character variables & result >255?

In this program I am attempting to assign the result of the addition of character variables to an integer variable.I have made sure that the size of the addition is greater than 255.So I expect an ...
0
votes
0answers
20 views

Parse Math Expression in PHP

I'm currently trying to parse math expression into expression tree. But I'm stuck on the stage where I need to implement functions and negates. I don't understand logic to do it using Shunting-Yard ...
1
vote
4answers
54 views

What is the result of an assignment expression in C?

In the following code: int c; while((c=10)>0) What does c = 10 evaluate to? Is it 1 which indicates that the value 10 is assigned to variable c successfully, or is it 10? Why?
0
votes
1answer
25 views

xpath not accepting this expression

hello everyone i have on question for xpath /abcd/nsanity/component_details[@component="ucs"]/command_details[<*configScope inHierarchical="true" cookie="{COOKIE}" dn="org-root" ...
0
votes
2answers
39 views

Switch case logical expression statement in Java - versus JS or PHP

in JavaScript and also I've seen it in PHP : You can use a logical expression inside you cases : For Example : switch(true){ case (d<10): document.write("Less than 10"); break; case (d==10): ...
-1
votes
2answers
35 views

How to compare with another and number return true? [closed]

I need some help !! <?php if($a == $number){ ?> //true here <?php } ?> In which $number is integer value ex 1,2,3,4 .... Question: What value with $a to this expressions always ...
3
votes
1answer
23 views

Default date format in jstl expression

I have already visited posts below: http://stackoverflow.com/questions/6250585/how-to-set-date-pattern-date-format-for-an-entire-application ...
6
votes
2answers
56 views

Powershell is ignoring expression after function call

Here is a powershell script: function PickANumber() { 12 } function GetTheAnswer() { PickANumber + 30 } $answer = GetTheAnswer write-output "The answer is $answer" The output of this script ...
1
vote
2answers
61 views

Is there an algorithm for optimization of expressions?

For example I have the array of tokens for expression x+2*(4*7): { "x" , "+" , "2" , "*" , "(" , "4" , "*" , "7" , ")" } I need get output like x+56. This is a simple example that can be much more ...
0
votes
1answer
19 views

Syntax error while making 2-Dimensional LinkedList

I'm trying to make a 2-Dimensional LinkedList in Java and this is what I have come up with: LinkedList<LinkedList<String>> rows = new LinkedList()<LinkedList<String>>; ...
1
vote
1answer
44 views

Implementing the A(:,k)=b; Matlab-like syntax in a C++ matrix library: avoiding const-ness

I have developed an expression templates-based C++ matrix class of my own. I have also implemented a Range class to enable Matlab-like reads as cout << A(Range(3,5),Range(0,10)) << endl; ...
1
vote
1answer
75 views

Call Contains() method in LINQ to Entities Expression on a type other than String

I am trying to implement searching/filtering in a grid that allows the user to create filter conditions that involve a column, an operation, and a value. Example: Column1 Contains "somevalue" The ...
0
votes
1answer
44 views

Expressions in markdown using knitr

I'm trying to use an inline expression in a .Rmd markdown file. I'm converting the .Rmd file to a PDF using Pandoc. The contents of my file is like this: Report ...
0
votes
2answers
42 views

Reading Properties of an Object with Expression Trees

I want to create a Lambda Expression for every Property of an Object that reads the value dynamically. What I have so far: var properties = typeof (TType).GetProperties().Where(p => p.CanRead); ...
0
votes
2answers
23 views

Visual basic 2008 issue with adding a method to my dynamic objects

I have searched for an answer to my question since last thursday. A lot of answers about my exact same question have been answerd in vb.net. However, I am working on Visual Basic 2008 and those two ...
1
vote
1answer
39 views

Shell: how to evaluate an arithmetic expression with more than two operands

I have read several post but they are talking about two operands I have got the following expression that is to be evaluated: sum = a / b * 100 In the bash shell, I can do: bash-4.1$ a=5 ...
0
votes
1answer
52 views

Dynamic Hyperlink in SQL Server Reporting Services SSRS 2005. Expression not resolving field?

SSRS 2005. Added a textbox> Properties> Navigation> jump to URL > Entered the URL, but can't seem to add dataset fields that resolve?? I tried inserting the Field via report builder dataset with no ...
0
votes
1answer
57 views

Solve equation which is in string format

I have a equation in string format like "45+5*4-6" which I have to solve in Java. Is there any way to solve equation which is in string format?
1
vote
0answers
34 views

Caching in Entity Framework Extended and Expression

I'm using the Entity Framework 5.0 and the expression is described in the recommendations Type member support in LINQ-to-Entities? public static Expression <Func <Category , bool >> ...
0
votes
0answers
5 views

Expression Engine show category entries

I want to be able to click on a category from the front end, and get an index of all the entries that are assigned to that particular category, and from then, a link to the single article - but I ...
2
votes
2answers
48 views

Long expression crashes SymPy

I'm using 64-bit Python 3.3.1, pylab and 32GB system RAM. This function: def sqrt2Expansion(limit): x = Symbol('x') term = 1+1/x for _ in range(limit): term = term.subs({x: ...
0
votes
2answers
43 views

Parsing arithmetic expressions

I'm studying the dragon book and can't wait to write an expression parser. In order to deal with negative number input, my lexer reads digits when meet the symbol '-' to return a number token. ...
0
votes
2answers
55 views

How to figure performance of small expressions?

I want to figure performance of small expressions,to I decide what to use. Consider the below code. Several recursivee calls to it may happen. void foo(void) { i++; if(etc(ch)) { //.. ...
-4
votes
1answer
20 views

Regular Expression to return a unknown string from within another string C#

Hi guys I have been battling with this for some time and am now giving up and hope you can help. I have a string of indeterminate length, within that string there is a unknown character set that I ...
2
votes
1answer
46 views

Hebrew special charcters in regexp

This is my code: preg_replace('/[^{Hebrew}a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $q); It's supposed to accept only a-z, A-Z, 0-9, any number of single white spaces and hebrew charcters. I tried it ...
0
votes
1answer
47 views

Implementing Matlab's colon : operator in C++ expression templates class

I'm implementing a C++ expression templates library. I have set up a proper SubMatrixExpr class to collect elements within a matrix, enabling a syntax like B = SubMatrix(A,1,3,2,10); which is ...
0
votes
0answers
23 views

evaluate an infixed expression

I have to evaluate an infixed expression given by the user without converting it to postfix. Here's my code so far: public class Calculator { private static final String OPERATORS = "+-*/%^()"; ...
0
votes
3answers
68 views

Confusing answers : One says *myptr++ increments pointer first,other says *p++ dereferences old pointer value

I would appreciate if you clarify this for me.Here are two recent questions with their accepted answers: 1) What is the difference between *myptr++ and *(myptr++) in C 2) Yet another sequence point ...
0
votes
0answers
57 views

While loop expressions in compiler parser construction

I am kinda new to design and constructing compilers. The thing I would like to implement is adding the while loop expressions to my so-far existed c/c++ code based on lets say these general BNF ...
-2
votes
0answers
18 views

How to valid the string in the EditText using regular expression?

Im developing a android application .Im using the version 2.2 (API 8) In that i want to get the input from the user via EditText I want to get numeric values from the edit text for example the ...
-4
votes
5answers
84 views

Why isn't “k” incremented in the statement “m = ++i && ++j || ++k” when “++i&&++j” evaluates to true?

Aren't the individual expressions in a composite logical AND/OR expression supposed to be evaluated first before the logical operators are applied to their result?Why is ++k untouched in the ...
1
vote
1answer
31 views

How to render expressions in matlab gui?

I want to convert mathematical expressions from a string in LaTeX format to their neat form. My initial solution was using another program to convert string to image and loading the image in gui. Is ...
1
vote
1answer
45 views

Lisp list and expression

Recently, I was reading article "Root Of Lisp" from Paul Graham.I encountered some questions.From the book, it defines expression as two :1.atom;2.list, while list is consisted of zero or many ...
-1
votes
1answer
16 views

Unable to solve matlab expressions [closed]

Hello I am new to matlab I have problem solving this simple expression r=10*sin(10)+10*cos(y); This expression is basically a result of the simple integeral equation I coded but now I am unable ...
2
votes
2answers
40 views

How to recover a string that has been split by a regular expression in Java

We know that String.split(String regex) returns a String[]. So, how can we recover a string by using the returned String[] and the regex (or needs more inputs)? It seems like if the regex is a ...
0
votes
2answers
45 views

Regular expression allow commas

I need to allow only letters and some chars. I use this regex: ([a-zA-Z '-_]*)$") But this allows also , ; : . Why?
-2
votes
1answer
64 views

convert regular expression from c# to javascript

Can someone help me convert this c# regular express (email validation) to Javascript? @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$
0
votes
2answers
15 views

regular expression foo_bar_number to 2 strings [foo_bar, number]?

i'm kinda new to regular expressions. I have this case where i want to split many words like "foo_bar_21", "bla_keks_38", etc. to ["foo_bar", "21"], ["bla_keks", "38"] basically i want the last ...
-1
votes
1answer
31 views

PHP Regular Expression Help: A quick way to extract the 2 from “page/2/” [closed]

Regular expressions - my current Achilles heal. I just need a way to take the string "page/2/" and extract the number, and only the number. It will always take that format. So could be page/2/ to ...
0
votes
1answer
45 views

Remove Dollar signs and commas from a string using sed

sorry if this has been posted in some form already. I cannot find anything that exactly answers my question. Im new to awk, sed, and bash. And I need to figure this out for a class project. I have ...
3
votes
3answers
59 views

Error with define in Racket

I just discovered Racket a few days ago, and I'm trying to get more comfortable with it by writing a little script that generates images to represent source code using #lang slideshow. I know that ...
1
vote
3answers
57 views

Expression matching Ocaml

My question is simple: how do I translate this C code : if (x == y + 1) // some code else if (x == y - 1) // some code else if (x == y + 2) .... Basically I was thinking of using pattern ...
1
vote
1answer
53 views

How to set a property value from an expression?

I need orientation on this scenario. For example I have this class: public class Schema { public string Value {get; set;} } On the front end the user will have the chance to enter the value for ...

1 2 3 4 5 35