Tagged Questions
The optional tag has no wiki summary.
32
votes
13answers
4k views
HTML: Include, or exclude, optional closing tags?
Some HTML1 closing tags are optional, i.e.:
</HTML>
</HEAD>
</BODY>
</P>
</DT>
</DD>
</LI>
</OPTION>
</THEAD>
</TH>
</TBODY>
...
10
votes
2answers
3k views
Parameters in strings.xml possible?
In my android app i'am going to implement my strings with Internationalization.
So currently i got a problem with the grammar and the way sentences build in different languages.
For example:
"5 ...
6
votes
3answers
2k views
Required and Optional Arguments Using Boost Library Program Options
I'm using Boost Program Options Library to parse the command line arguments.
I have the following requirements:
Once "help" is provided, all the other options are optional;
Once "help" is not ...
6
votes
1answer
3k views
Real world examples of @optional protocol methods
I'm learning Objective-C at the moment and have come across optional methods in Protocols. My background is C# and can see a Protocol as something similar to a C# Interface.
Where a C# Interface ...
5
votes
5answers
3k views
Optional characters in a regex
The task is pretty simple, but I've not been able to come up with a good solution yet: a string can contain numbers, dashes and pluses, or only numbers.
^[0-9+-]+$
does most of what I need, except ...
4
votes
6answers
116 views
Are there any conventions for printing optional values?
Suppose I want to overload operator<< for an optional<T> class template. How would I print the "absent value", and how would I print a "real value" x?
none
some x
or
[]
[x]
Or should ...
4
votes
1answer
174 views
emacs interactive function with optional numeric prefix
How do I specify a function which has optional numeric prefix, if not, it prompts for a number? basically how goto-line behaves?
(defun my-function(&optional n)
; I have tried
(interactive ...
3
votes
3answers
325 views
Backtracking in scala parser combinators?
It seems like scala's parser combinators don't backtrack. I have a grammar (see bottom) which can't parse the following "stmt" correctly:
copy in to out .
That should be easy to parse with ...
3
votes
1answer
414 views
calling optional delegate methods
i created a delegate for a class
@protocol gameDelegate <NSObject>
@optional
-(void)gameStarted;
@required
@end
now in my game object i called this method:
[self.delegate gameStarted];
so ...
3
votes
4answers
358 views
F# Optional Record Field
I have a F# record type and want one of the fields to be optional:
type legComponents = {
shares : int<share> ;
price : float<dollar / share> ;
totalInvestment : ...
2
votes
1answer
44 views
Importing an optional module
This is my file structure:
[mylibrary]
__init__.py
[codecs]
__init__.py < this is the file that we're talking about
optional.py
Now I have this code in the marked ...
2
votes
1answer
33 views
Ignoring commas and dots using fscanf()
I'm trying to read strings without commas and dots using fscanf().
Example input:
"Mr. and Mrs. Dursley, of number four, Privet Drive, were proud to say that they were perfectly normal, thank you ...
2
votes
4answers
85 views
Javascript: is the arguments array deprecated?
Most sites say "callee" as a property of Function.arguments is deprecated. But some sites go further and say the whole of Functions.argument is deprecated E.g. ...
2
votes
2answers
1k views
where to find missing optional ant tasks?
I wanted to have a look which system properties are set here (and to which values), so the easiest way (if not writing a new Java program here) would be adding some lines to my ant build script:
...
2
votes
2answers
174 views
haskell parsec optional question
Sorry if it's a novice question - I want to parse something defined by
Exp ::= Mandatory_Part Optional_Part0 Optional_Part1
I thought I could do this:
proc::Parser String
proc = do {
...
2
votes
2answers
149 views
Handling Optional APIs in J2ME
What is the right way of working with optional APIs in Java Mobile?
Does one need to make different versions of their app?
Or is it enough to check APIs availability at runtime using ...
2
votes
2answers
390 views
Makefile: ignore prerequisite if does not exist
Is there any way to say that if prerequisite for the given target doesn't exist then ignore that target?
For instance, I have the following set of folders
chrome_src_folders := ...
2
votes
3answers
800 views
Regex optional match in python fails
tickettypepat = (r'MIS Notes:.*(//p//)?.*')
retype = re.search(tickettypepat,line)
if retype:
print retype.group(0)
print retype.group(1)
Given the input.
MIS Notes: //p//
Can anyone tell me ...
2
votes
1answer
715 views
How can I make sure a boost::optional<T> object is initialized in release-build?
When trying to get the value of a boost::optional object, BOOST_ASSERT is used to make sure the object is indeed initialized.
But what I would like when dereferencing an uninitialized optional is ...
1
vote
1answer
18 views
preg_match match up to an optional character then ignore remaining text
I have the following string format:
[[TEXT|TEXT]] <-- the "|TEXT" is optional
And so far what works fine is:
/([^\[]+)(?=\]\])/
Which will return:
TEXT
or
TEXT|TEXT
I want to match up to ...
1
vote
1answer
48 views
InnoSetup: How to select which component file to install from the Pascal script?
I need to install the one of 2 pre-built libraries with InnoSetup installer. They both have the same name, but their source is different.
The pascal script of InnoSetup should select which one of ...
1
vote
2answers
65 views
Powershell Regex - optional named group matches
Let's say I have a string:
$string1 = "Hello_World:How, are, you:-all -is -well"
I would like to use a regex to match the sections of the string seperated by colon's into named groups. For example:
...
1
vote
1answer
35 views
Deserialization of optional fields from BinaryFormatter
I have an application that serializes data using BinaryFormatter. A member was added to the class that was serialized from one version to the next without changing the class name. Code was added to ...
1
vote
1answer
74 views
Ant in Ant in Maven: How to add optional tasks?
I'm trying to run junitreport task in Ant in Ant in Maven:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
1
vote
1answer
94 views
How to set IDL, so users can tell a parameter is “optional” in VBA?
In an IDL, I define a method:
[id(1), helpstring("BLAH")] HRESULT SomeMethod([in, optional, defaultvalue(NULL)] IDispatch* para);
When I use this method in VBA, the screen tip only shows:
...
1
vote
2answers
117 views
Database design - Optional fields
I'm about to add a field which gives users an optional title. Is it good practise to create an extra table with 1 or more fields with an id to serve as a lookup? Is this considered efficient and are ...
1
vote
3answers
274 views
regex c# optional group - should act greedy?
having regex ~like this:
blablabla.+?(?:<a href="(http://.+?)" target="_blank">)?
I want to capture an url if I find one... finds stuff but I don't get the link (capture is always empty). Now ...
1
vote
1answer
107 views
Regex Optional Matches
I'm trying to match two types of strings using the preg_match function in PHP which could be the following.
'_mything_to_newthing'
'_onething'
'_mything_to_newthing_and_some_stuff'
In the third ...
1
vote
3answers
139 views
Should I be using abstract methods in this Python scenario?
I'm not sure my approach is good design and I'm hoping I can get a tip. I'm thinking somewhere along the lines of an abstract method, but in this case I want the method to be optional. This is how I'm ...
1
vote
2answers
726 views
Need for a JasperReports null parameter value to show all
I've been through this problem for a while and I hope you can help me.
I have a report made on iReport, and I'd like the report to be filled even if some parameters are null.
Here's what I have
...
1
vote
1answer
298 views
Using Double.NaN in optional parameter on interface
I have come across something confusing or potentially a bug in Visual Studio 2010 when defining an interface in my VB application: When defining an interface method with a default parameter of type ...
1
vote
2answers
73 views
WPF Optional Binding
I have an existing XAML file with some data templates in it. One of these datatemplate can be used in different situations. Therefore, I want to bind 1 of the properties only if a certain condition is ...
1
vote
2answers
202 views
Regexp pattern Optional character
I want to match a string like 19740103-0379 or 197401030379, i.e the dash is optional.
How do I accomplish this with regexp?
1
vote
2answers
40 views
reading optional attributes from optional setting in javascript
What is the most efficient way of reading optional attributes in an optional setting argument. I'm using something like:
f = func(var1, optionalsettings) {
var2 = (optionalsettings === undefined ...
1
vote
3answers
374 views
How to get SQL Function run a different query and return value from either query?
I need a function, but cannot seem to get it quite right, I have looked at examples here and elsewhere and cannot seem to get this just right, I need an optional item to be included in my query, I ...
1
vote
1answer
467 views
How to make a parameter optional in WSDL?
I have a WebService API which needs 2 of its parameters to be optional in the WSDL
public wsProxy[] Insert(wsProxy[] proxies, string loginname, string password, bool returnNewData)
{
//code here
}
...
1
vote
3answers
1k views
preg_match to match an optional string, but not match all of the string
Take for example the following regex match.
...
1
vote
3answers
2k views
How can I use an optional array argument in a VBA procedure?
I've got a private procedure in a VBA script for MS Access:
Private Sub drawLineDiagram(chartSpace As Variant, title As String, caption As String, x_val() As Variant, y_val() As Variant, Optional ...
1
vote
4answers
2k views
Optional parameter for reference to pointer?
how do I the second parameter become optional?
template <typename T>
inline void Delete (T *&MemoryToFree,
T *&MemoryToFree2 = ){
delete MemoryToFree;
MemoryToFree = NULL;
delete ...
1
vote
1answer
3k views
Optional Readonly Property in VB.Net Interface
I am trying to develop a simple interface for allowing quick lists to be generated from classes. Basically, the interface needs to return an ID and a Name. However, some classes have a calculated name ...
0
votes
1answer
78 views
what should I return if I don't have something to return for an unknown type
For the following code, what should I return if I don't have something to return ? Currently, I do something like T() but I'm not sure it's correct and proper.
template<typename T1, typename ...
0
votes
2answers
34 views
Ant's optional tasks are not available on CentOS
When I run ant on CentOS to build java project I receive an error:
Could not create task or type of type: replaceregexp
ant -diagnostics shows that optional tasks are not available. How I can ...
0
votes
1answer
20 views
How can you accept optional parameters in a RegEx expression?
I want to simplify this expression a bit. Is there a better way to do this using lookups, or something? I'm pretty junior when it comes to regex. The params $3, $5 and $7 params are optional. $1 is ...
0
votes
1answer
111 views
boost::optional alternative in C++ Standard Library
I'm trying to get my program working without boost usage, but can't find an alternative of some useful patterns. Namely, I can't find boost::optional-likewise pattern in the standard library. Is there ...
0
votes
1answer
60 views
Python's argparser: how to set ommand line input of a postional argument as the for an optional argument?
I want the command line input of a positional input to be the default for an optional argument, like this:
parser.add_argument("Foo")
parser.add_argument("-b", dest="bar")
...
0
votes
1answer
57 views
boost::spirit::qi - optional match
I'm new to boost::spirit. I've stumbled over a simple thing. Given a string like this:
Optional text KEYWORD further text
I need to parse it into a string like this:
T KEYWORD further text
where ...
0
votes
1answer
50 views
Database design and optionality in relationships of join tables
I am designing a database model and a question occurred to me: what's the point of specifying whether the join-table side of a relationship is optional bearing in mind it has no effect on the ...
0
votes
4answers
46 views
string padded with optional blank with max length
I have a problem building a regex. this is a sample of the text:
text 123 12345 abc 12 def 67 i 89 o 0 t 2
The numbers are sometimes padded with blanks to the max length (3).
e.g.:
"1" can ...
0
votes
1answer
71 views
right way of testing for optional field values
While writing a method in my app which uses playframework,I need to get user input for Address fields and search db for a matching one.If I can't find a matching address ,I have to create a new ...
0
votes
2answers
150 views
How to apply sometimes a filter in a tablix on SQL Report Services, and sometimes don't?
I am doing a report with Visual Studio, and I am newbie on this kind of reports. I have a parameter (StringID), and in its properties I allow multiple values. I also have a tablix with the following ...