Tagged Questions
The chararray tag has no wiki summary.
16
votes
13answers
12k views
C++ char* vs std::string
When I use std::string and when char* to manage arrays of chars in C++?
It seems you should use char* if performance(speed) is crucial and you're willing to accept some of a risky business because of ...
5
votes
1answer
113 views
C# ToCharArray does not work with char*
I have the following struct:
[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
unsafe public struct Attributes
{
public OrderCommand Command { get; set; }
public ...
4
votes
5answers
283 views
How can I make this work with every delimiter? - C++
I just wrote a program that tokenizes a char array using pointers. The program only needed to work with a space as a delimiter character. I just turned it in and got full credit, but after turning it ...
3
votes
4answers
126 views
C++ copy std::string to char array with no null termination
I am writing to a binary file using a struct that just contains a char[32]. I basically need to format each block of data by performing various calculations on string arrays and concatenating the ...
3
votes
2answers
221 views
c++ char arrays, use in cin.getline()
I have the following code:
char myText[256];
cin.getline(myText,256);
Why exactly do I have to pass a character array to cin.getline() and not a string?
I have read that in general it is better to ...
3
votes
5answers
3k views
C++ / Arduino: How do I convert a string/char-array to byte?
I want to convert
char lineOneC[8] = {0,1,1,0,0,0,0,1};
into
byte lineOneB = B01100001;
How do I do this in C++ / Arduino?
3
votes
3answers
134 views
How to convert the time to a c string in c?
I wanna to write something to a .txt file in .c file, but required to name that file with the current timestamp as the postfix, just like filename_2010_08_19_20_30. So I have to define the filename ...
3
votes
4answers
940 views
Bad Pointer? - C++
I'm writing a string tokenization program for a homework assignment in C++, that uses pointers. However, when I run & debug it, it says that my pointer pStart, is invalid. I have a feeling that my ...
2
votes
6answers
103 views
c char arrays and pointers
#include<stdio.h>
int main(){
char a[6],*p;
a[0]='a';
a[1]='b';
a[2]='c';
a[3]='4';
a[4]='e';
a[5]='p';
a[6]='f';
a[7]='e';
printf("%s\n",a);
printf("printing address of each array element");
...
2
votes
5answers
197 views
why does toString method in java doesn't seem to work?
I want to convert a character array to a string object using the toString() method in java. following is the snippet of the test code I used
import java.util.Arrays;
class toString{
public static ...
2
votes
3answers
155 views
Comparing std::string with constants vs comparing char arrays with constants In C++
I am trying to make a little text adventure to get a handle on C++.
cin >> keyboard1;
if ((keyboard1 == "inv")inventory(inv);
This will work if keyboard1 is a string, but won't if it's a ...
2
votes
3answers
366 views
Fast ByteBuffer to CharBuffer or char[]
What is the fastest method to convert a java.nio.ByteBuffer a into a (newly created) CharBuffer b or char[] b.
By doing this it is important, that a[i] == b[i]. This means, that not a[i] and a[i+1] ...
2
votes
4answers
177 views
How can I convert a String to a char array?
Is there any function to do this kind of job or do one have to parse each char and add it to the array?
2
votes
3answers
678 views
C Check Substring of a String C
I'm trying to check whether or not the second argument in my program is a substring of the first argument. The problem is that it only work if the substring starts with the same letter of the string.
...
2
votes
2answers
1k views
How to create C++ istringstream from a char array with null(0) characters?
I have a char array which contains null characters at random locations. I tried to create an iStringStream using this array (encodedData_arr) as below,
I use this iStringStream to insert binary ...
1
vote
3answers
39 views
Write two char Arrays in an other char array dont work
Output: "Hello"
Why the output isnt "Hello World"?**
#include <stdio.h>
int main ()
{
char x[] = "Hello", y[]="World", xy[50];
int i, j;
for(i=0; x[i] != '\0'; i++) {
...
1
vote
3answers
63 views
C++: Reading and comparing from command line
I'm reading a line from the command line that looks like this:
"./test -C original.txt compressed.txt"
The variable -C can also be -D (it is irrelevant to state what they mean).
I want to verify ...
1
vote
2answers
85 views
Java: String.toCharArray() with unicode characters
I know that char cannot contain Unicode characters (like char c = '\u1023'). So how would I go about doing
String s = "ABCDEFG\u1023";
char[] c = s.toCharArray();
I would like to convert s ...
1
vote
4answers
105 views
Heap understanding problem
I have a small understanding problem with the heap in c++.
I have created a small class to convert a Wchar_t-Array to a Char-Array. Here is a part of my convert class:
.h
class ConvertDataType
{
...
1
vote
2answers
86 views
Spitting a char array into a sequence of ints and floats
I'm writing a program in C++ to listen to a stream of tcp messages from another program to give tracking data from a webcam. I have the socket connected and I'm getting all the information in but ...
1
vote
2answers
371 views
Converting hex value in char array to an integer value
I have a hex value stored in a two byte array:
unsigned char hex[2] = {0x02, 0x00};
How can I convert this to a decimal value?
1
vote
1answer
230 views
Character Array needs to display in certain order and place
Trying to get the final part of this game to work. Its a hangman game, I just need it to display correct guesses where they are in the word.
This is the snippet of code of when a correct guess is ...
1
vote
3answers
167 views
In C, can I initialize a string in a pointer declaration the same way I can initialize a string in a char array declaration?
Do these two lines of code achieve the same result? If I had these lines in a function, is the string stored on the stack in both cases? Is there a strong reason why I should use one over the other, ...
1
vote
2answers
325 views
Unsigned char std::vector to unsigned char[]?
Simple question, how does one create a function which takes an unsigned char std::vector and spits out an unsigned char[] with a length. Thanks!
Ah, well it seems my problem was my knowledge of ...
1
vote
6answers
1k views
concatenate char array in C
I have a a char array:
char* name = "hello";
I want to add an extension to that name to make it
hello.txt
How can I do this?
name += ".txt" won't work
1
vote
5answers
1k views
Reverse C-style String? - C++
I've written a small program for my programming class, that uses pointers to reverse a char array. I was wondering if there is anything that I should do differently? Am I doing this correctly? Is ...
1
vote
4answers
214 views
What Does Adding One to a Character Array in C Do?
I'm looking through some code for learning purposes. I'm working through this portion of code.
// e.g. const unsigned char data={0x1,0x7C ... }
unsigned char buf[40];
memset(buf,0,40);
buf[0] = 0x52;
...
1
vote
9answers
3k views
Copying an array in C
I'm starting to learn C by reading K&R and going through some of the exercises. After some struggling, I was finally able to complete exercise 1-19 with the code below:
/* reverse: reverse the ...
0
votes
2answers
64 views
String/Binary data to Bytes
Am new to Python. I want to convert a char array to byte buffer i.e. Is there any way to convert data which could be string or binary data to byte buffer.
Eg: if str = 'apple' I need buffer = bytes ...
0
votes
4answers
90 views
Why am i getting two different strings?
I wrote a very simple encryption program to practice c++ and i came across this weird behavior. When i convert my char* array to a string by setting the string equal to the array, then i get a wrong ...
0
votes
3answers
72 views
sized arrays as function parameter types in C++
I am using templates for my struct like:
#pragma pack(push, 1)
template <typename T>
struct S
{
T t;
inline void Set(const T& val) { t = val; }
}
#pragma pack(pop)
T can be an ...
0
votes
2answers
54 views
variably modified type in char[]
I have this struct. What I am trying to do is to have a continues ram space to memcpy them on hard drive. I have a dynamic created string which I will use as a key. I want to create a struct that can ...
0
votes
1answer
146 views
Char[] to Byte[] for output optimize in web (java)
I just find in an experence share presentation from infoq. It claims that if you convert the String to byte[] in servlet, it will increase the QPS (Queries per Second?).
The code example shows the ...
0
votes
4answers
191 views
Android - Clean char array quickly and effectively
Is it possible to clean a char array in Java (Android) quickly and effectively? Make an other loop on the treatment seem to be to much heavy to be an optimised solution, doesn't it ?
It's strange but ...
0
votes
1answer
107 views
efficient circular queue reorder
I am using a circular queue as a data buffer. I am using a char array to hold the data and my problem is when I need to view the data in the buffer in its original order. the reordering of the buffer ...
0
votes
3answers
243 views
C# perform string operation on UTF-16 byte array
I'm reading a file into byte[] buffer. The file contains a lot of UTF-16 strings (millions) in the following format:
The first byte contain and string length in chars (range 0 .. 255)
The following ...
0
votes
5answers
289 views
How can I assign hex string to a char[] variable?
Assume my hex string. hexStr = "aecf"
How can I assign the hex string value to unsigned char myChar[] as below. Thanks.
myChar[0] = 0xae;
myChar[1] = 0xcf;
0
votes
2answers
129 views
In C++, Passing char array to super give erros?
I have this structure:
class Base
{
public:
void doACopy(char* strToCopy) {
strcpy(str, strToCopy);
}
private:
char str[4];
};
class Derived : public Base
{
public:
void ...
0
votes
2answers
668 views
Mac address ff:ff:ff:ff:ff:ff in C (hex)
How do I write the MAC address ff:ff:ff:ff:ff:ff as a char[] in C?
Do I just do char macaddress[6] = "%0xFF%0xFF%0xFF%0xFF%0xFF%0xFF";
I'm not sure. Thanks!
0
votes
3answers
140 views
problem in char array?
char *funcNames[]= {"VString","VChar","VArray","VData"};
for(int i=0;i<4;i++)
{
char* temp = funcNames[i];
int len = strlen(funcNames[i]);
for(int j = 0;j<len ;j++)
...
-1
votes
1answer
268 views
Using WM_GETTEXT - what to set the Size?
Var
PText : array[0..512] of Char;
Handle, Child : HWND;
begin
FillChar(PText,512,0);
Handle := FindWindow('Notepad',nil);
Child := FindWindowEx(Handle,0,'Edit',nil);
Caption := ...