The vowel tag has no wiki summary.
1
vote
4answers
61 views
How to count the number of words from a text file in C [duplicate]
This is what I have come up with so far.
#include<stdio.h>
main()
{
int w=0, v=0, c=0, cnt=0;
char inp[21]="abcd aeiou hi there", ch;
FILE *read, *write;
write = ...
1
vote
2answers
71 views
Find vowels in each word from a sentence entered by the user (java)
Hi i have a program that gives the following output:
Enter a Sentence: I am new to java
I
am
new
to
java
Number of vowels in: I am new to java = 6
My problem is that i need to get the vowels ...
-13
votes
1answer
164 views
How to order words by their number of vowels? [closed]
I have a text file containing words that need to be returned in the ascending order of number of vowels. What should I use to put the words in this order?
For example, I've tried writing a program ...
-5
votes
1answer
126 views
Split words starting with vowels and consonants to arrays [closed]
i have to make a script in PHP. First in splits the sentence by spaces and adds to array. Then it splits the words from array by the starting letter. If it starts with vowel, it goes into one array ...
0
votes
5answers
90 views
Java - Converting the characters in a string array depending on whether or not it's a vowel
I'm coming up with blanks. The method takes in any name and tests whether a character is a vowel or consonant. If it's a vowel, it makes the character uppercase, if it's a consonant, it makes the ...
0
votes
3answers
80 views
Сounting vowels in javascript
I use this code to search and count vowels in the string,
a = "run forest, run";
a = a.split(" ");
var syl = 0;
for (var i = 0; i < a.length - 1; i++) {
for (var i2 = 0; i2 < a[i].length - ...
-3
votes
6answers
162 views
How to detect and echo the last vowel in a word?
$word = "Acrobat" (or Apple, Tea etc.)
How can I detect and echo the last vowel of a given word with php? I tried preg_match function, google'd for hours but couldn't find a proper solution.
There ...
2
votes
2answers
99 views
How to exchange vowels and consonants in Python
I would like to make a function which will decode a word in following way: the first vowel exchanges with the last one, the second with second to last etc. The same I would like to do with consonants. ...
1
vote
3answers
90 views
how to test another method in my main method in java
I'm practicing to test my method (it is to count the number of vowels) in my main function.
I was wondering how I can implement my code here? Is there also flaw in my codes?
public class ...
3
votes
1answer
160 views
Finding all combinations of vowel replacements
I am trying to find all possible combinations for all vowels in a word. So for example given 'hello':
[halla, halle, halli, hallo, hallu, hella, halle, halli, hallo, hallu...]
So far, I have written ...
3
votes
1answer
533 views
C# random letter generator with specified ratio of consonants:vowels
As part of a larger class assignment, I need to create code to scatter 50 random letters into the console (It's a "Snake" game); that part, I didn't have a problem with. I used this code to generate ...
2
votes
2answers
2k views
java Vowel Counter Using Switch Method
I don't understand why my code is checking each individual word in my string. I am getting the right amount of vowels for each word. I am supposed to write a simple java application that counts each ...
1
vote
5answers
2k views
Counting vowels in a string using recursion
In my python class we are learning about recursion. I understand that it's when a function calls itself, however for this particular assignment I can't figure out how exactly to get my function to ...
2
votes
1answer
262 views
Using threads to alternate between words starting with a vowel or consonant
What I'm trying to do is have the main() create two threads which will run two functions. One function is vow which prints words which start with a vowel and the other is cons which prints words which ...
2
votes
5answers
1k views
Count vowels from raw input
I have a homework question which asks to read a string through raw input and count how many vowels are in the string. This is what I have so far but I have encountered a problem:
def vowels():
...
0
votes
2answers
117 views
How to Reset a Value in Python String
I am trying to add certain text everytime a vowel appears in a word. Here is my code so far:
first_syl = 'ab'
second_syl = 'bc'
word = 'income'
vowels = "aeiou"
diction = "bcdfghjklmnpqrstvwxyz"
...
0
votes
1answer
160 views
How to Add a Character to an Existing String in Python
I'm trying to replace vowels/syllables in words with other text..for example:
Word entered: program
Text to replace syllables/vowels with: ab
Result: pr**ab**ogr**ab**am
AND if there is a wildcard ...
-1
votes
2answers
295 views
Remove all characters of a string that are immediately followed by two vowels
It is possible to delete all characters of a string that is immediately followed by two vowels, without the aid of a char array, using instead exclusively the "string" library ?
For example:
priamo ...
0
votes
4answers
369 views
Java XPath umlaut/vowel parsing
I want to parse the following xml structure:
<?xml version="1.0" encoding="utf-8"?>
<documents>
<document>
<element name="title">
...
2
votes
5answers
1k views
Cannot determine vowels from consonants
I have very recently just started to learn Python and I'm struggling to understand why this is happening.
With the code below, no matter what the first letter of the input is, it is always determined ...
-1
votes
1answer
167 views
Computing vowel frequency with R
Can you please give me a hint on what's the best and easiest way to compute the absolute and relative frequencies of vowels in a string using R?
I guess the source code is a bit different from what ...
7
votes
3answers
440 views
Python: How to prepend the string 'ub' to every pronounced vowel in a string?
Example: Speak -> Spubeak, more info here
Don't give me a solution, but point me in the right direction or tell which which python library I could use? I am thinking of regex since I have to find a ...
2
votes
1answer
176 views
Prolog : Divide word on syllables using predicate “Name”
I need to read a word in from the user and then split it into syllables
based on one of 2 rules: vowel-consonant-vowel, or
vowel-consonant-consonant-vowel.
Looks that predicate "name" does not work, ...
1
vote
3answers
322 views
How can I count vowel groups in a sentence using Haskell
I am learning Haskell and I am doing some simple exercises for practice. I have come across a problem dealing with counting vowel groups in a sentence. My first attempt was to use list comprehension ...
6
votes
3answers
1k views
Counting Syllables In A Word
I'm looking for a fully accurate statement of an algorithm to count syllables in words. What I'm finding when I research is inconsistent or what I know to generate incorrect results. Does anyone ...
2
votes
8answers
9k views
Java Program to test if a character is uppercase/lowercase/number/vowel
As I said before, how do I test if the entered character is one of the parameters? I've written this code, but it doesn't seem to run very well(or at all), no errors, however. Also, I need to use the ...
2
votes
3answers
666 views
sed - print words that start with a vowel only
how do you reverse this sed to print only print words that DO START with a vowel? I have tried putting in ! in the sed command below but it does not work - I thought that would just invert the rule ...
2
votes
3answers
340 views
sed - delete only words with vowels
I am trying to delete all words that start with a vowel as per below - the sed command I have is only deleting the first word if it has a vowel - not any others - i thought the boundary marker below ...
0
votes
1answer
63 views
Regular expression not producing the intended output
I am making a simple regular expression to recognise first consonant(if any),then all the vowels in between and then the next consonant after the last vowel(if any).
For ex:
we are all morons ...
1
vote
3answers
127 views
Adding 'a' or 'an' to a randomly generated string
How do I add 'a' or 'an' to a randomly generated string?
The random generator is post[rand(post.length)].
How do I add 'a' or 'an' to the above result automatically when the post is starting with ...
2
votes
5answers
448 views
Counting Syllables, loop issue
So i am trying to count syllables and right now I'm running some test to see if I can find vowels and then go from there. However, my output is coming up as 0 and I fail to see where the error is. I'm ...
6
votes
2answers
349 views
Vowel datatype in Haskell, is it possible?
Hi I have been learning Haskell and have written the following code to remove vowels from a sentence:
main = print $ unixname "The House"
vowel x = elem x "aeiouAEIOU"
unixname :: ...
1
vote
3answers
241 views
Logic / Algorithm for this Series
I have an array of characters from a to z, my task is to extract the vowels out of this array, the series that will extract the indexes of vowels goes like this, 1, 5, 9, 15, 21, 25... i am unable to ...
0
votes
2answers
383 views
replacing vowels in a list with underscore using Prolog
here is what I want to do. I have a list of characters (basically a word) and I want to substitute the vowels in the word by underscore ['_'] and return a new list.
eg:
?-sub([s,e,g,e,d],A).
...
1
vote
3answers
327 views
Allow Some Special Characters using Regex
The following regex matches any Unicode Letters + Unicode Numbers + Vowel Signs + Dot + Dash + Underscore + Space
/^[\w\pN\pL\pM .-]+$/u
Works successfully.
I want to edit my regex so it accepts ...
0
votes
1answer
287 views
How to erase every occurences of vowels in a string
In a schools assignment we are asked to remove every occurences of vowels from a string.
So:
"The boy kicked the ball" would result in
"Th by kckd th bll"
Whenever a vowel is found, all the ...
0
votes
8answers
3k views
Count no of vowels in a string
I wrote a program to count no of vowels in a string but its not efficient or optimized code.
Moreover it will not check caps vowels.
Can some one help to make my code optimizes
...
1
vote
5answers
352 views
What is the most efficient way to detect and replace the last vowel in a string?
I have a string that contains a series of random words separated by commas:
worda,sample,wordb,another,extra,exampleb
This list will always be different.
What is the most efficient way to replace ...
17
votes
3answers
522 views
Playing around with Devanagari characters
I have something like
a = "बिक्रम मेरो नाम हो"
I want to achieve something like
a[0] = बि a[1] = क्र a[3] = म
but as म takes 4 bytes while बि takes 8 bytes I am not able to get to that ...
-4
votes
1answer
201 views
I want to remove the words from a list of words, when there is a vowel after a given character
class Test{
public static void main(String[] args) {
String line = "ALONE AMEND DATES DAWNS DEALS LEMON LENDS";
int maxVowelAtChar = 4;
// need the help for ...
2
votes
2answers
572 views
Perl regex matching vowels [duplicate]
Possible Duplicate:
Regex to match vowels in order as they appear once
This matches words that have an a e i o u:
foreach $v(@lines)
{
if(($v =~ /a/) && ($v =~ /e/) && ...
1
vote
4answers
770 views
Count the number of vowels in a string (But it doesn't work)
This is a question from Problem solving and program design in C.And also it is a recursion question.I created a function, but it isn't working right.I simply want to count vowels in a string.
...
1
vote
5answers
1k views
List directories that contain two consecutive vowels in name. Linux terminal command
I've been stuck on this question for a while now and can't seem to figure it out.
the question is:
Write a command to print the number of directories in /home that contain two consecutive vowels ...
4
votes
3answers
1k views
Regex in Python to find words that follow pattern: vowel, consonant, vowel, consonant
Trying to learn Regex in Python to find words that have consecutive vowel-consonant or consonant-vowel combinations. How would I do this in regex? If it can't be done in Regex, is there an efficient ...
2
votes
3answers
164 views
Regex match ordering
My question is simple suppose I would like to match the vowels in a word, but I would like to match them in a specific order as the appear such as a, e, i, o, u. How would I go about doing this?
4
votes
2answers
2k views
In java how I can delete Vowels are 'a', 'e', 'i', 'o' and 'u
I wonder how can I delete vowels from String except the vowel come end of word
in Java by code
For example "Please come to my party"
To return "Plse cme to my prty"
4
votes
3answers
1k views
Perl, string replacement
I want to convert each letter in a sentence to a certain letter depending on if it is a constanant or a vowel, where vowels are AEIOU.
So if I have a string:
string= 'Hello'
I would like to see
...
1
vote
6answers
3k views
best way of checking for vowels in javascript
I'm supposed to write a function that takes a character (i.e. a string of length 1) and returns true if it is a vowel, false otherwise. I came up with two functions, but don't know which one is better ...
0
votes
1answer
518 views
Simple PHP word generator
I'm trying to use php to create a simple script that will generate all possible word combinations.
For example when a user types in CVC. It generate all letter possible combinations of consonant ...
0
votes
1answer
113 views
manipulation of String in the output
Here is my code:
import javax.swing.*;
public class Vowel
{
public static void main(String[] args)
{
String myString = JOptionPane.showInputDialog(null,"Enter your text: ");
...
