The ctype tag has no wiki summary.
0
votes
1answer
26 views
PHP Checking ctype and strlen in single if statement
I have a form that validates First Name, Last Name, and E-mail before processing. It seems however that something isn't working. If I enter an e-mail address and my script validates it, then the page ...
0
votes
1answer
122 views
brew install open-mpi fails
Trying to install openmpi, read that:
Could not determine if REAL*16 bit-matches C type
Ran brew doctor, and it's giving me:
Your system is raring to brew
full output
% brew install open-mpi
...
0
votes
1answer
30 views
Error with the icon of my app in XP
I've done two apps in Win7 x64 with VS2012, but when I try to run it in XP I was getting an unknown error when trying to open the apps.
Finally I found the problem and is in this line generated by ...
0
votes
2answers
34 views
One line is being skipped in file with isalpha()
I am using isalpha() to determine if there are characters on the line and it is showing that the line "90 1 0" contains alphabetic characters.
Here is the relevant code
bool digitTest(char *test, ...
1
vote
2answers
92 views
CType in VB.NET with dynamic second parameter (type)
In VB.NET CType can be used to convert one type to another.
CType(expression,type)
I have the "expression" stored in an instance object class, say "objExp".
I have the "type" stored in an instance ...
4
votes
2answers
107 views
Object reference not set to an instance of an object [VB.NET]
Public Class Form1
Private Function AllEnabled(ByVal b As Boolean) As Boolean
For i As Integer = 0 To 2
Dim c As CheckBox = CType(Me.Controls("CheckBox" & i.ToString), ...
0
votes
1answer
25 views
Bringing isw*() ctype functions to Mac OS X
tsvector field in my Postgres database is not being populated with Arabic text on my Mac OS X (10.8.2). It's perfectly working with English text.
I asked over IRC and I was told perhaps the platform ...
0
votes
1answer
249 views
Converting lower/upper case letters without ctype.h
I just saw that this could technically work, the only mistake I couldn´t resolve was the last ASCII character that gets printed everytime I test it out, I also tested this out without using the name ...
1
vote
1answer
74 views
Why do not I get an error even when I have commented the header and used its function?
In the following program I commented the statement #include <ctype.h> in the hope that an error will be thrown while using the functions like isupper and isgraph. But to my surprise no error is ...
1
vote
2answers
113 views
How to make ctype_upper ignore spaces on uppercase check?
I have the following in part of my code. It checks to see if $item is uppercase and if so adds a class of 'uppercase' to the div element.
`echo "<div class='". $alt . "'><div ...
2
votes
1answer
375 views
dynamic casting at runtime vb.net
I would like to know if this is ok, lets say I have a class somewhere on my project and at some point I will need to cast an object to this class type or another but I can only know this at runtime, ...
0
votes
2answers
164 views
Undefined reference errors when trying to extend ctype facet
I'm trying to create a custom ctype facet by extending ctype<uint32_t>, but keep getting undefined reference errors.
Here is a minimal test program reproducing the errors:
#include ...
1
vote
1answer
156 views
How to implement <ctype.h>?
I'm trying to build an implementation of <ctype.h> with a lookup table and bits masks (this method). But I've seen in the C11 standard I need some informations about the current locale :
7.4 ...
0
votes
2answers
97 views
How can I make atoi work in my ADS project?
I want to use atoi function in my program, but I found it not working.
#include <ctype.h>
int value;
value=atoi(buf);
char buf points to "1000" or something like, terminated by \0. I have ...
0
votes
3answers
102 views
Removing letters from words within a file C - problematic sign
to be precise, I'm trying to copy from file A to file B, every word that DOES NOT have both letters 'e' and 't' in them (the, peter, etc), the program works fine, but at the end of the outfile I'm ...
4
votes
2answers
92 views
How are wctype.h functions supposed to be used correctly?
The various is... functions (e.g. isalpha, isdigit) in ctype.h aren't entirely predictable. They take int arguments but expect character values in the unsigned char range, so on a platform where char ...
1
vote
1answer
213 views
Linux kernel 0.0.1 vs 2.6.36, “ctype.h”, whats the difference?
How efficient is linux kernel 2.6.36 from 0.0.1
0.0.1:
I understand, in this version, Linus has assigned the value of
c(input variable to a function) to a temp variable and operate on
that temp ...
0
votes
0answers
156 views
How do vb.net implement directcast and ctype
It looks like directcast require actual implementation or inheritance and success. It looks to me the way it is implemented is that vb.net will simply change the pointer type without bother changing ...
-1
votes
1answer
279 views
Ctype casting to Decimal returning negative value
I am wondering if this is a bug. Can't understand why would CType work this way...!
0
votes
1answer
210 views
CTYPE issue during building dame
I am trying to build DAME. Environment details:
GCC - gcc version 4.4.2 (GCC)
ANTLR - ANTLR Parser Generator Version 2.7.2
when i am trying to compile the following code snippet:
#include ...
0
votes
1answer
333 views
MSDN COLORREF structure macros, Python
I'm attempting to use the SetLayeredWindowAttributes function to change the windows transparency color. I made a structure using the ctypes module. I'm pretty sure I have to use the COLORREF RGB macro ...
5
votes
3answers
868 views
PHP - How to allow underscore and dash with ctype_alnum?
How can I add the exception of _ and - as valid characters when using ctype_alnum ?
I have the following code:
if ( ctype_alnum ($username) )
{ return true;
}
elseif ...
3
votes
2answers
106 views
How can I do C style casting in VB.NET?
I have a object type variable (control .Tag) that I need to cast to a structured type, and change a member in. This is a contrived but representative example:
Public Structure struct_COLOURS
Dim ...
2
votes
3answers
298 views
Invalid Types in VB.NET
I have a function which returns a list of products and a page which displays then, but when I try to load the list on the page, I get a cryptic error:
[A]System.Collections.Generic.List`1[Product] ...
9
votes
1answer
674 views
Convert vs. CType
I am somewhat confused about presence of two seemingly identical VB.NET functions: CType(args) and Convert.ToType(args). I'm fairly new to .NET and VB in general, so I'm not quite sure whether one of ...
3
votes
1answer
3k views
What does set_locale(LC_CTYPE, 'C'); actually do?
When my PHP script is run with UTF-8 encoding, using non-ascii characters, some PHP functions like strtolower() don't work. I could use mb_strtolower, but this script can be run on all sorts of ...
-1
votes
1answer
316 views
How to define a C struct which contain a struct inside a Ctype python
Hi
I am learning python and using ctype to embedd 'C' in python. My query is-
How to use C stru which again calling a stru inside into cytpe/python.
typedef struct {
struct *i, *j;
BOOLEAN ...
1
vote
1answer
251 views
PHP ctype_print - different behavior on Windows and Linux?
I just experienced a weird problem today:
On my windows machine, ctype_print("äöütest") returned true.
But when I was on my linux machine (debian), it returned false.
In the php.net documentation I ...
0
votes
1answer
535 views
How can I convert DataRowView type to integer type?
How can I convert DataRowView type to integer type?
0
votes
1answer
651 views
asp.net access user control in vb class
i have a usercontrol named filebox (which wraps a fileupload and some related stuff)
in a certain .net class i have need to use this type as a ctype
but i cant seem to call ctype(aobject,filebox)
...
0
votes
1answer
4k views
What is the C# equivalent of CType in VB.NET?
I am trying to convert the example provided in this MSDN article (http://msdn.microsoft.com/en-us/library/aa479330.aspx) to C#, but am stuck at the following code:
CType(dq, ...
2
votes
1answer
337 views
ctype and strings and containers
Is there any reason that the ctype facet functions (is,scan_is,scan_not only support plain char pointer, and not iterator based containers, like std::string or even a std::vector...
then one could ...
1
vote
2answers
92 views
Dealing with ctype.h integer overflow
What is the proper way to deal with character values which when casted to an unsigned char fall between {INT_MAX + 1 ... UCHAR_MAX} where UCHAR_MAX is greater than INT_MAX.
int is_digit(char c) {
...
22
votes
2answers
11k views
Difference between DirectCast() and CType() in VB.Net
I am an experienced C/C++/C# programmer who has just gotten into VB.NET. I generally use CType (and CInt, CBool, CStr) for casts because it is less characters and was the first way of casting which I ...
19
votes
4answers
10k views
Casting DataTypes with DirectCast, CType, TryCast
Ever since I moved from VB6 to VB.NET somewhere in 2005, I've been using CType to do casting from one data type to another. I do this because it is simply faster to type, used to exist in VB6 and I do ...
31
votes
10answers
9k views
C#'s equivalent to VB.Net's DirectCast?
This has probably been asked before, but if it has, I can't find it.
Does C# have an equivalent to VB.Net's DirectCast?
I am aware that it has () casts and the 'as' keyword, but those line up to CType ...
4
votes
1answer
2k views
Directcast & Ctype differences with enums
Public Enum Fruit
Red_Apple = 1
Oranges
Ripe_Banana
End Enum
Private Sub InitCombosRegular()
Dim d1 As New Dictionary(Of Int16, String)
For Each e In ...
2
votes
3answers
2k views
C++ ctype facet for UTF-8 in mingw
In a project all internal strings are kept in utf-8 encoding. The project is ported to Linux and Windows. There is a need for a to_lower functionality now.
On POSIX OS I could use ...
0
votes
1answer
179 views
charlower with gcc
I am trying to convert the following code from msvc to gcc
#define ltolower(ch) CharLower((LPSTR)(UCHAR)(ch))
char * aStr;
* aStr = (char)ltolower(*aStr);
This code is giving a compiler ...
8
votes
5answers
7k views
Casting in VB.Net
I would like to be able to cast a value dynamically where the type is known only on runtime. Something like this:
myvalue = CType(value, "String, Integer or Boolean")
The string that contains the ...
0
votes
3answers
880 views
Beginner: Fastest way to cast/copy byte() into single()
I've got a byte() array returned as result of directx sound capture, but for other parts of my program I want to treat the results as single(). Is trundling down the array item by item the fastest way ...


