Combination of several programming symbols and values intending to produce a result
0
votes
0answers
4 views
how to access a property of an object in a list using Lambdaj
package test;
import java.util.Arrays;
import java.util.List;
import static ch.lambdaj.Lambda.*;
public class LambdajTest {
public static void main(String[] args) {
List<Person> ...
0
votes
2answers
26 views
How do I turn this conditional logic into a ternary expression?
Here is small little jquery plugin that checks if the element passed in is an input element and if it is empty:
$.fn.inputIsEmpty = function() {
if (!this.is('input:text')) {
return ...
1
vote
0answers
13 views
workflow c# expression properties window displays snippets
I have been building workflows using VS2012 and .NET 4.5. However every now and then when I try and enter a C# expression in the editor window the intellisense does not pick up any variables or ...
0
votes
2answers
14 views
Linq Expression comparing property and an integer
I am trying to compare if a property of an object has the value of int.
How to achieve it, please?
int id = 123;
// Func<MyClass, bool> f = x => x.A.B.Id == id;
var a = ...
0
votes
0answers
5 views
Determining whether Audio/Video the device is input type or output type in Expression Encoder
I am using Expression Encoder Libraries to develop an application where I need to know all the input and output audio/video device connected with a machine. Though I am able to find out all the ...
0
votes
2answers
25 views
Extract GUID from line via regular expression in perl
I have problems testing for and when successful extracting a GUID from a line of a textfile. Given a guid 12345678-1234-1234-1234-123456789abc, where all hexadecimal characters are allowed (I use ...
0
votes
1answer
36 views
Recursive descent parsing Java - The idea of recursion
I have the following assignment for university. I need help with the recursion, because I don't quite understand how the recursion is gonna work here.
I parse the Input-String, which looks something ...
0
votes
1answer
31 views
How to solve boolean logic equation with prolog?
For example i have expression "C = A and B", i want to make predicate like
solv(A, B, C) := C is A, B.
to call it like
solv(A, true, true).
and Prolog say "B is true". Please help
0
votes
1answer
48 views
PreIncrement/PostIncrement Operators Magic! Annoying me :-/ [duplicate]
int a = 0;
cout << a << a+1 << a << 1+a << a;
// output is 01010 , ok fine i understand it! :-)
cout << endl;
cout ...
0
votes
1answer
61 views
simplifying algebraic expressions (java) [closed]
I want to be able to enter an expression, say: a*(b+c)+d
and have my code be able to simplify the expression (have it print out a*b+a*c+d).
this is what i have as of now:
Scanner scanIn = new ...
0
votes
1answer
26 views
Javascript : Empty String Match In Regular Expression
i want to match the url with contatin http/https and (www) or without (www)with the help of regular expression. following is my regualr expression
^((https?)://)(www\\.)| ^$ ...
0
votes
6answers
41 views
Retreive a String using regular expression on java
I have these lines :
This reverts commit c289f6fa1f8642a5caf728ef8ff87afd5718cd99.
This reverts commit c7740a943ec896247ebc5514b6be02710caf3c53. There should
This reverts ...
2
votes
2answers
56 views
Is there a way to use || or && operators between expressions
I'm trying to refactor a complex Linq query.
I would like to know if there's a way that we can do something like this :
Suppose that we have two expressions:
Expression<Func<object,bool>> ...
0
votes
0answers
32 views
Grails g:findAll - how to use contains method in expression
I have got class like that:
class Person {
String name
static hasMany = [accounts: Account]
static constraints = {
}
}
Class Account looks like that:
class Account {
String ...
0
votes
0answers
23 views
How to make AsDataView method work while making query with expression tree?
var query = SalesDataSet.Orders.Where(order => order.GetOrderDetailsRows().Count() > 1)
DataViwe dv = query.AsDataView();
dataGridView.DataSource = dv;
AsDataView method works fine.
...
0
votes
1answer
39 views
SSRS - Conditional Text Formatting (Expressions using Switch)
I will open this up by stating that the expressions do work within the report. The problem is they aren't working together.
I currently have a column header formatted based on the values of two ...
0
votes
0answers
16 views
expression encoder screencapturejob capture rectangle out of range exception
My screencapturejob.rectangle results in a exception(ArgumentOutOfRange).
Here's my code:
private void RecButton_Checked(object sender, RoutedEventArgs e)
{
System.Drawing.Size ...
0
votes
1answer
28 views
PHP preg_match results null
$pattern = '/^<div\sclass="yui3-u-2-3"><div\sid=left><h2\sclass="ehr">(.*?)<\/h2>/';
$subject = htmlentities($search, ENT_QUOTES, "UTF-8");
$arslt=preg_match( $pattern, ...
1
vote
1answer
39 views
Solr Date Regex Query
I want to use solr's regular expression capabilities to query a date field.
I'm trying to make a simple query like the following, but I get 0 results and no errors.
...
0
votes
2answers
29 views
Regex for conditional expressions
I need a regex that can divide into token an expression like this:
(6<=5) || (8+1)^2 >= 3 && 4 == 2
The result should be a list like this:
(, 6, <=, 5, ), ||, (, 8, +, 1, ), ^, ...
1
vote
2answers
54 views
Passing expresstion through functions
I'm using data.table package and trying to write a function (shown below):
require(data.table)
# Function definition
f = function(path, key) {
table = data.table(read.delim(path, header=TRUE))
e ...
2
votes
3answers
31 views
Regexp for preg_replace in PHP
I have strings like this (some examples):
F7998FM3213/02F
J442554NM/05
K439459845/34D
I need to use PHP with preg_replace and regular expressions to delete all non-numeric characters in any ...
0
votes
1answer
33 views
Add an equation into scatter plots in R
I have a little trouble to add the equations into scatter plots using "legend"
A simple example is as follow:
plot(1:100)
# The below code can work if I add "= 0.1234" directly.
legend(locator(1), ...
-1
votes
3answers
48 views
Python Regular Expression - Regular Expression that finds one pattern per line?
Say I have the following lines in the file testFile:
Test Line in File
Test Line in File
Test Line in File
Test Line in File Line
Test Line in File Line
Is it possible to do a re.findall() that ...
1
vote
1answer
30 views
Replace a type in an expression tree
I'm struggling with the modification of an expression tree. I've simplified the example to make it easier to display here. Let's start with two classes:
public class Filter
{
public ...
2
votes
2answers
49 views
Regular Expression in Bash Script
Hello awesome community,
I'm a complete dope when it comes to regex. I've put off learning it.. and now my laziness has caught up with me.
What I'm trying to do:
Check if a string matches this ...
2
votes
1answer
45 views
How would I modify this inequalities so Mathematica will confirm them?
I get lots of conditions like this:
a (b c - (-1 + a) d (c + f g)) h > (-1 + a) i (b + a j ) g
I have following assumptions all variables are real and greater 0, a is also smaller 1, in ...
0
votes
0answers
25 views
xtext : factor expression
here, my code that I try to factorize :
FunctionArguments returns FunctionArgs::IFunctionArguments :
FunctionArgumentsNormal
| FunctionArgumentsForIter
;
FunctionArgumentsNormal returns ...
0
votes
0answers
19 views
safari developer tools How do I watch expressions from iframe?
Driving me Nutz!
I love Safari developer tools. I have tried many others and I think Safari developer tools are the best.
I do have some content to debug now and then, that is in iframes.
I cant ...
1
vote
1answer
34 views
Non-space space
This seems rather odd to me, but here is my problem:
I want to strip all spaces down to one space. When I try the regex
[ ]{2,}
it should match correctly. In my data I unfortunately seem to have ...
0
votes
2answers
28 views
How to create an expression call with function createdatetime?
I am trying to create an expression call with a six parameter function CreateDateTime, in the expression I am a beginner, anybody help? thks.
Here is the result what I want to get
m => m.OpenDate ...
1
vote
0answers
26 views
VBA ByRef argument acting differently whether passed by parenthesis or not
Just regarding passing arguments in vba, ByRef seems to act differently if the argument is passed in parenthesis rather than explicitly stating them using ':=' for example:
Sub CallingProcedure()
...
0
votes
1answer
19 views
Regular Expression results regexp
[(e|x|c)n-t\|]{8}
I think the result must have 8 characters and the first one will be e,x or c.
Am I right?
I've tested all possibilites but nothing...
2
votes
2answers
73 views
Getting from Func<T, T, bool> + T instance to Expression<Func<T, bool>>
If I have a Func<T, T, bool> that tells me how to compare two Ts as in
var comparer = (a, b) =>
a.IdPart1 == b.IdPart1 && a.IdPart2 == b.IdPart2;
And I want to use this and a ...
0
votes
0answers
31 views
convert string into math expression .net/php Not library but actual logic
Provided a string like "y = 1, x = 2, w = x + y +1"
How to make .net or any language convert it into a math expression and calculate it?
Now I am more concerned regarding the logic behind it not a ...
1
vote
2answers
54 views
Algorithm to invert strings of algebraic expressions in Python
Is there an easy way to make a function to inverse an algorithm for example like this:
>>> value = inverse("y = 2*x+3")
>>> print(value)
"x = (y-3)/2"
If you can't make actual ...
0
votes
2answers
43 views
i<=: Expression is not complete; more tokens expected. ksh
i get this error: i<=: Expression is not complete; more tokens expected. This is the code:
vr=`$line`
set sep_mx=`echo $vr | awk '{
n=split($0,x,"@#;")
print n
}'`
echo $sep_mx
i=1 ...
1
vote
2answers
31 views
Linq Expression that compare Lambda result with a constant
I have a calculated property
public decimal Avaibility
{
get{ return l => l.Start - l.Uses.Sum(u => u.Amount);}
}
so i can't include this property in any predicate for linq to entitie ...
0
votes
1answer
33 views
Sympy, is it possible to force a class to stay on the left or on the right side of the expression
In this answer it is explained how to avoid args to be sorted in SymPy classes like Mul, Add and so on.
For a new created class like this one explained here it can go to the right hand side when ...
1
vote
1answer
24 views
can OGNL evaluate an expression which mixes normal string with property name?
I want to use OGNL to evaluate an expression, this expression contains normal string and property name.
unit test code:
@Test
public void evaluate_ognl() throws OgnlException
{
String ...
0
votes
0answers
4 views
Visual Studio 2005 SRS Layout Expression help iff(fields!Field.value = “A” or “B”, “C” )
I am a newbie in Visual Studio Reporting Services 2005 and trying to group together 2 Values into One.
I wish to show one grouped value for "SALES" in layout report screen but it show 2 listing of ...
0
votes
0answers
19 views
Evaluating non-static expressions in Janino
Is there any way in Janino to evaluate an expression that contains both calls to non-static object methods and parameters?
For example, given a class like
public class SimpleCalculator
{
public ...
0
votes
1answer
18 views
how to make an regular expression in javascript to repeat
How can I make it to validate this string:
word:word,word:word,
What I wrote this and works only for:
word:word,enithinggg
which is wrong.
/^(^([0-9a-zA-Z!\? ])+\:([0-9a-zA-Z!\?. ])+\,)+$/i
0
votes
2answers
44 views
How to validate the following phone numbers?
These numbers are acceptable:
(0123) 456789
(01 23) 45 67-89
0123/456789
+49(0)123-456789
How my pattern should look like?
/^[0-9]+$/;...
I don't know exactly how to integrate the addition ...
4
votes
1answer
32 views
How to use several equal signs in text(x,y,expression(…))
is there a solution to use more than one equals signs in a expression (which are not within brackets)? I'm currently doing it with " = ". But thats not so nice, since == and " = " look different on ...
0
votes
1answer
30 views
Ant search in text file some text expression
Ant search in text file some text expression, if it NOT found I try to delete file that txt was. So my code in Ant is down, but I don't know how put NOT correctly
<target ...
0
votes
1answer
45 views
Convert an N-ary expression tree to a binary tree
I have a generic N-ary expression tree and I want to convert the same to a binary tree. Is there any well defined algorithms to do the same?
I tried going thro' different algorithms of converting ...
0
votes
1answer
32 views
How to call SqlFunctions.PatIndex() with Expressions?
I have a business layer call that works like so:
CustomerRepository.Get(c => SqlFunctions.PatIndex("%" + arg + "%", c.FirstName));
I am trying to build this using expressions:
public ...
1
vote
2answers
43 views
function not visible in function expressions, how to fix this?
I have a function expression like this :
var inputChecker = function(field) {
return function() {
if(field === '' || field === 'undefined' || field === null) {
return false;
...
0
votes
1answer
23 views
How to reverse this expression using notepad++ regex
I have a file which is full of these lines(and some other stuff) and "SUMMARY" is an identical start of line.
SUMMARY:1991/04/08
SUMMARY:1211/08/10
the numbers can be anything. I want to reverse it ...



