The expressions tag has no wiki summary.
0
votes
0answers
3 views
htaccess address forward regular expression
I am trying to forward from a test URL to the real URL.
I am using rackspace and each site there comes with a test URL so that it's possible to build a site a without the final domain name being in ...
-4
votes
0answers
19 views
Simplify an Expressions with DeMorgan’s law [closed]
I need help to simplify the following Boolean expressions using demorgans-law:
X' Y + (X Y Z')'
Please show some steps so I can do the other ones myself.
6
votes
2answers
93 views
Syntax to refer a method returning an Expression to another method?
I found a piece of code of the following form:
public static Expression<Func<Invoice, CustomerContact>> GetCustomerContact()
{
return i => new CustomerContact {
...
0
votes
2answers
45 views
Powershell - Calling Property Inside Expression
Could you please advise, why does this work:
Get-DistributionGroup -Filter {DisplayName -like "*Name*"} |
fl Displayname, PrimarySMTPAddress, @{Label = "Members"; expression = {
...
0
votes
2answers
28 views
Normalizing Regular Expression String
I have been reading a book on frameworks called PRO PHP MVC. In the book a StringMethods class was created. The code looks like this.
class StringMethods
{
private static $_delimiter = "#";
...
-2
votes
2answers
44 views
How can I implement an expressions structure in java that supports evaluating and multiple types
In the light of writing a tool that compiles simple programs in a custom language that uses a parser for parsing simple .txt-file programs, I'm looking for an efficient way to store and evaluate ...
0
votes
2answers
93 views
Regular expressions: How to remove all “R.G(*******)” from a string
There are several strings, and I wanna to remove all "R.G(**)" from these strings. For example:
1、Original string:
Push("Command", string.Format(R.G("#{0} this is a string"), accID));
Result:
...
0
votes
1answer
89 views
Build up LINQ expression before querying
I'm querying data using LINQ to SQL, but I'd like to add to the expressions before I submit the query. So far, I have this:
public virtual IQueryable<T> ...
2
votes
1answer
70 views
Multiple LINQ expressions, and dynamic properties
1.) I have an entity query like: return myEntityStore.Query<theType>(x => x.Name == "whatevs");
However, ideally I want to call a function which appends other expressions to the original ...
0
votes
2answers
50 views
Sql advanced searching
I'm trying to create a search engine for e-shop and I want make this:
If the client writes e.x galaxy white in the search bar I want to execute a sql query that matches that string with the products ...
1
vote
1answer
50 views
How to extract this with regular expressions in C#
I'm recently making an AddIn for Outklook in C#.
I started to see regular expressions.
I have one text like the next one (plain text in a string or a txt file), and I have to extract everything except ...
0
votes
2answers
86 views
Trying to understand basic regex functions in C++
I've done regular expressions in Perl for years and am now trying to utilize them in C++. Having some problems though. I want to parse through a string such as translate(0.0,-572.36218) and grab the 2 ...
0
votes
0answers
23 views
Using the value of a string variable in a Linq Expression
I am trying to create something like the below but I need to generate the OR statements from an IEnumerable
examinerSpec.Predicate =
...
2
votes
1answer
46 views
How to get the argument to invoke an Expression?
Given the following code:
public static MvcHtmlString InlineEditable<T,TP>(this HtmlHelper helper, Expression<Func<T,TP>> fieldSelector)
{
var compiledFieldSelector = ...
0
votes
1answer
206 views
How to sum using datediff in SSRS
My goal is to get the following result in my *.rdl report from my SSRS expressions in visual studio 2008. The DueDate and InvoiceAmt are bound fields (fields!duedate.Value and fields!valuehome_1). ...
-1
votes
1answer
46 views
Regular Expression Symbol meanings in .Net framework [closed]
I was given regular expressions for validation of parameters that I need to change into English for my documentation for an application. I'm not sure I have the meanings correct.
I've done several ...
1
vote
2answers
45 views
How can I shorten this xpath expression?
I have defined a variable called tags which selects a node set of elements whose names are one of several values:
<xsl:variable name="tags" select="//xs:element[@name='Subscription' or ...
1
vote
0answers
111 views
Basic calculator with expressions and other mathematical operations [closed]
I'm supposed to create a basic calculator that will be able to do the following operations add, subtract, multiply, divide, mod, and other. For the "other" option, I need to solve an expression such ...
1
vote
2answers
77 views
calling Expression.Call
I have:
class X<t1>
{
class Y<t2>
{
public Y<t2> Skip(int count)
{
var mi = (MethodInfo)MethodBase.GetCurrentMethod();
var f = ...
5
votes
2answers
61 views
How do i pass a method as the parameter of another method using linq expressions
I want to create a method that runs another method in a background thread. Something like this:
void Method1(string param)
{
// Some Code
}
void Method2(string param)
{
// Some Code
}
void ...
151
votes
4answers
5k views
What is this smiley-with-beard expression: “<:]{%>”?
I came across the following program, which compiles without errors or even warnings:
int main(){
<:]{%>; // smile!
}
Live example.
What does the program do, and what is that ...
0
votes
0answers
51 views
How to stop Mathematica from “simplifying” expressions [closed]
I have a simple example:
k = 5;
list = {};
For[i = 1, i <= k - 2,
AppendTo[list, 1/(1 + Cos[(i \[Pi])/k]) (1 - Cos[m/n 2 \[Pi]])];
i = i + 2];
Print[list];
Output reads:
{(1-Cos[(2 m ...
3
votes
1answer
65 views
Lambda Calculus Expression Test-bed?
I would like to test out the Lambda Calculus interpreter that I've written against a fairly large test set of Lambda Calculus expressions. Does anyone know of a Lambda Calc expression generator I can ...
0
votes
0answers
26 views
Multiple Regular Expressions to parse a delimited string [closed]
Given the following example string delimited by underscores:
First Item_Second Item_Third_Fourth One_Fifth_Last Item_
I would like 3 separate regular expressions to return the:
First Item
Third
...
1
vote
2answers
77 views
Php regular expressions work different on different servers
I am using regex to get URL's from a webpage.
On localhost (PHP 5.3.15 with Suhosin-Patch (cli) (built: Aug 24 2012 17:45:44)) code:
$file = ...
2
votes
2answers
117 views
Creating a type that can be used as a Func/method
I have been playing around with LINQ to Z3 for fun (not production use).
I've ended up with this syntax as a start:
var i = 123;
var test2 = from t in TheormProver.NewTheorm()
let f = ...
2
votes
1answer
63 views
How to create an UnaryExpression on Math functions as Log, Cos, Sin
I want to build a list of UnaryExpression to be used later in my code. I was able to easly make it for BinaryExpression and obtained:
var binaryList = new Func<Expression, Expression, ...
0
votes
1answer
62 views
How to assign a Collection to an SSIS Task Property
I have a "Transfer SQL Server Object" Task on an SSIS package and I want to store a Collection of tables in a package variable, and then assign this variable to the ObjectsToCopy.TablesList property ...
4
votes
1answer
74 views
Actual type cannot be inferred for the method accepting Expression<Func>
I'm writing a small library for parsing resultsets of stored procedures (basically, very specific kind of ORM).
I have class
class ParserSetting<T> // T - type corresponding to particular ...
0
votes
2answers
196 views
Use a summary field in an expression in SSRS reports
I have the details of my report being summed up in a summary expression, all works fine. The fields are decimal values of hours worked. Thus, the summary value is also a decimal value. I'd like to ...
0
votes
2answers
47 views
Regular expressions for password validation missing work
I need to validate a password that matches the following criteria:
Must be at least 6 characters long (?=.{6})
String contains a numbers(0-9) and least 1 uppercase letter(A-Z) and least 1 (-) ...
-1
votes
3answers
49 views
finding text using regex
I have string like this abc+def(ghi)+jkl and I want to get {abc,ghi,jkl} as the result of regex. So far I found: [a-z]+(?!\\() but it returns {abc,de,ghi,jkl}. Does anyone know how to write proper ...
0
votes
3answers
44 views
re string position list builder
So I have a string like this:
'|item1|item2|item3|item4'
From that string, I want to build an list like this:
['|item1','|item1|item2','|item1|item2|item3','|item1|item2|item3|item4']
It ...
0
votes
2answers
127 views
How can I set up a boolean expression that can execute in both C# and SQL, without depending on libraries like EntityFramework?
I want to have an app where a user (typically a power user) can enter a boolean expression. I want to be able to execute the boolean expression in both .NET and in SQL.
The expressions themselves ...
1
vote
3answers
65 views
Three python regular expressions around underscores
i'm helping someone with some file renaming at work using an application that supports python regular expression syntax. i tried a few expressions found on forums like ^[^_]+(?=_) for a) below but it ...
3
votes
1answer
161 views
Convert Expression<Func<TModel,Boolean?>> to Expression<Func<TModel,Boolean>>
A method in ASP.NET MVC is expecting an expression Expression<Func<TModel,Boolean>> (shows a checkbox HTML control on screen), but my members are Boolean?.
In our case, for this specific ...
1
vote
2answers
199 views
Dynamically cast object to a type, when type is unknown at compile time
I have a method for fetching data from database, and it is generic:
public static IQueryable<T> GetData<T>(IQueryable<T> data, some more parameters)
data is unfiltered collection ...
2
votes
1answer
112 views
How to access argument properties when writing custom NHibernate HQL generator
I have the following custom type with a method on it to determine if one span of time overlaps another
public struct DateTimeSpan
{
public DateTime? Start { get; set; }
public DateTime? End { ...
0
votes
4answers
45 views
Python Regular Expression for Extrating URL
I'm working on a regular expression and was wondering how to extract URL from a HTML page.
I want to print out the url from this line:
Website is: http://www.somesite.com
Everytime that link is ...
2
votes
4answers
49 views
PHP Code replace whit Regular expressions
I have my site on series, usually all series are divided by seasons and episodes, I have the following string:
The Mentalist S05E14
where **S05E14** is like **Episode 14 Season 05** I need to ...
-4
votes
1answer
35 views
Regular Expression,Regex PHP
I need to validade a string in the following format:
numbers, letters and _
Minimum length 4 and max length 15
At least 1 letter [a-z]
For example:
Valid:
ABCD
ABCDE
ABC_
01A_
...
0
votes
3answers
51 views
testing regular expressions javascript
I have written a regular expression for the quantity and the maximum they can order is 500 for each (summer, autumn, winter). The expression is -
var chkquantity = ^([1-9]?\d|[1-4]\d{2}|500)$/
...
0
votes
2answers
52 views
javascript expressions names
I am a complete beginner to javascript and I have several things I need to correct on a form in order for it to work. I have to make sure it doesn't reject any valid names (names with accents, ...
0
votes
2answers
578 views
Use scanf with Regular Expressions
I've been trying to use regular expressions on scanf, in order to read a string of maximum n characters and discard anything else until the New Line Character. Any spaces should be treated as regular ...
0
votes
0answers
268 views
How to truncate/round a decimal value using SSIS expressions?
I would like to truncate/round a numerical value to Decimal(25,10) using Derived Column transformation available in Data Flow Task. How to use Cast or Convert and bring down the decimal data type to ...
0
votes
0answers
72 views
How to use JEXL in combination with PropertyUtils.getNestedProperty?
I have certain String properties that I need to evaluate in runtime like :
name
personType
address[0].addressType
contact[0].contactType.id
Succesfully I get the property´s value through ...
0
votes
2answers
70 views
Reg Ex matching time range [duplicate]
I have a log file that saves logs by time stamp. What I have to do is to read certain values between time range. For example from the beginning of file and 5:3:55. I am not good with regex was ...
1
vote
1answer
61 views
Extended regular expressions - Think I might be too restrictive in my search but not sure
I'm trying to figure out this extended expression to search a txt file for specific lines using the following parameters:
lines that contain a seven-digit number,
surrounded before and after with ...
-3
votes
1answer
67 views
Javascript object property value as expression does not work [closed]
I am new to JS, I made some investigation but couldn't find a solution. Forgive me if it is a duplicate.
Context: I have thousands of objects, most of them the same properties. In the javascript, I ...
-1
votes
1answer
53 views
How to use RegEx to get what I want and nothing in between
I have been messing around with Regex for a couple hours now and I'm at an impass. Lets say I have this:
<a href="/link here/faqs"></a><a href="/link/here/contacts"></a><a ...


