Tagged Questions
The character-arrays tag has no wiki summary.
9
votes
2answers
2k views
How do you get a string to a character array in JavaScript?
How do you get a string to a character array in JavaScript?
I'm thinking getting a string like "Hello world!" to the array ['H','e','l','l','o',' ','w','o','r','l','d']
5
votes
4answers
153 views
Why is a char* being treated the same as a char** in C?
I have the following test application:
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
int main(void){
char buf[512];
buf[0]= 0x1;
buf[1]= 0x2;
char ...
3
votes
6answers
315 views
NULLs in string array
How to remove Null values in string array
Like { ,-2,3, ,-4,+5, ,66...}
I need to remove those null values in between and re-size the array
I don't want to use lists
I don't want to create a ...
2
votes
3answers
138 views
Only first character of string is will print in C
I have this struct
typedef struct grade
{
char firstName[SIZE];
char lastName[SIZE];
int stuNum;
}GRADE;
and this output code:
void printData(GRADE grade[], int used)
{
int i;
...
2
votes
8answers
195 views
Initialization of a char array in C
So I read that:
char pattern[] = "ould";
is basically the easier way of writing:
char pattern[] = { 'o', 'u', 'l', 'd', '\0' };
I understand that the null character \0 marks the end of a string, ...
2
votes
2answers
1k views
PHP - iterate on string characters
Is there a nice way to iterate on the characters of a string? I'd like to be able to do foreach, array_map, array_walk, array_filter etc. on the characters of a string.
Type casting/juggling didnt ...
2
votes
2answers
742 views
Convert image data to character array
I'm building a mobile advertising sdk for the iPhone and I assume that the only way to store the images that will represent the button icons for the landing page controller [in the library] is to ...
2
votes
3answers
2k views
Comparing character arrays and string literals in C++
I have a character array and I'm trying to figure out if it matches a string literal, for example:
char value[] = "yes";
if(value == "yes") {
\\ code block
} else {
\\ code block
}
This ...
2
votes
9answers
279 views
Please explain this behavior with character arrays/strings in C
I get this when I was trying something (just for understanding). Please explain this behavior:
First attempt:
void main()
{
char src[] = "vinay";
int i;
// char name[5] = ...
1
vote
3answers
121 views
Array and string
I have an array of type char and a string that I will be introducing from the keyboard. Can anyone tell me how can I introduce each character of the string in the char array?
1
vote
3answers
129 views
Passing 2-D array with dynamic size between functions in C/++
This is "popular" question so I already checked the similar threads but still didnt resolve my issue.
How can I declare 2-D array to hold "strings" - I need array of array of chars AFAIK - and use it ...
1
vote
2answers
299 views
atoi on a character array with lots of integers
I have a code in which the character array is populated by integers (converted to char arrays), and read by another function which reconverts it back to integers. I have used the following function to ...
1
vote
3answers
507 views
Character pointer and array
The code snippet is:
char c[]="gate2011";
char *p=c;
printf("%s",p+p[3]-p[1]);
The output is:
2011
Can anyone explain how it came?
-----Thanks in advance-----
1
vote
2answers
123 views
Character array and pointer
The code snippet is given as:
char *s[] = {"program", "test", "load", "frame", "stack", NULL};
char **p = s + 2;
We need to find the output of following statement:
printf("%s", p[-2] + 3);
What ...
1
vote
9answers
506 views
Can I do a multidimensional char array in c++?
First off, this is a "homework" question so vector libraries and string libraries are off limits. I'm trying to get to the basics of c++.
My intention with this code is to make and use an array of ...
1
vote
5answers
454 views
Trimming a string using an array of characters using C#
When you use the Trim() method on a string object, you can pass an array of characters to it and it will remove those characters from your string, e.g:
string strDOB = "1975-12-23 ";
...
0
votes
3answers
97 views
How to pass a scanf string to a global character array through pass-by-address in C++?
Let me make this clear right away, this is for a college class. I cannot use C++ libraries, only standard C libraries. Do not suggest that I use C++ strings or cin/cout because that will not help me ...
0
votes
10answers
90 views
(To me) unexplainable value in character array
I'm stuck with something I really don't understand and I hope someone over here does.
Can anybody explain me why 'nextOne' holds the value 51? It's clear that at index 2 in the expression array is ...
0
votes
1answer
54 views
How can I place numbers at the end of an int (not summing)?
I'm busy with making an expression tree for school, I've already build the part in which the tree is being made and printing the result of the arithmetic expression also works.
There is this extra ...
0
votes
1answer
63 views
Fortan 77 Variable Size Array of strings?
I am a dummy in Fortran 77 and have always been a C++ coder, but I have to modify a code from years long ago...
I want to create a variable size array of strings and I cannot find online how to do ...
0
votes
5answers
179 views
How do I return a variable size string from a function?
I need a working code for a function that will return a random string with a random length.
What I want to do would be better described by the following code.
char *getRandomString()
{
char ...
0
votes
4answers
255 views
How to remove a character from a string using baskspace in C?
can you give me an example of deleting characters from an array of characters in c?
I tried too much, but i didn't reach to what i want
That is what i did:
int i;
if(c<max && ...
0
votes
3answers
175 views
string manipulating in C?
I want to print an array of characters, these characters are underscores first.
Then the user can write characters on these underscores.I used gotoxy() but it doesn't work properly.
That is what i ...
0
votes
6answers
233 views
Create files from file names in another file C++
I am working on sorting several large files in C++. I have a text file containing the names of all the input files, one on each line. I would like to read the file names in one at a time, store them ...