Word search ends with

Word Finder

  • Words With Friends Cheat
  • Wordle
  • Word Finder
  • Anagram Solver
  • Word Descrambler
  • Word Scramble
  • Word Unscrambler
  • Scrabble Cheat
  • Scrabble Word Finder
  • Unscrambler

Trending Pages

  • 5 Letter Words Starting With Th
  • 5 Letter Words Ending In Ef
  • 5 Letter Words Starting With Ag
  • 5 Letter Words Ending In Ny
  • 5 Letter Words Starting With Dw
  • 5 Letter Words Ending In Lt

Popular Searches

  • Words That Start With X
  • Two Letter Words With J
  • 6 Letter Words Starting With L
  • 4 Letter Word Ending In V
  • 5 Letter Word Starting With T
  • 6 Letter Words Starting With T
  • 5 Letter Words Starting With B
  • 5 Letter Words That End In A
  • 10 Letter Words
  • Words With H And Q
  • 4 Letter Words Starting With E
  • Seven Letter Word That Starts With A
  • 2 Letter C Words
  • V Words
  • Words With 2 Y’s

Frequent Searches

  • Words With N And Z
  • Words With U And C
  • Words With I And U
  • Words With Uq
  • Is Paq A Word
  • 5 Letter Words With Tt
  • Words With V And N
  • Words With M And Q
  • Word With R And Q
  • Words With V And A
  • Words That Start With Q And End With O
  • Word Tip
  • Que Words With Friends
  • Words With H And U
  • All Words

Eye Rhymes

Eye rhymes are words that have the same spelling at the end of the word, but the sound of the end of the word is not the same. This Tool could be used to identify eye rhymes.

Example: Words ending with ough

  • off sound: cough, trough
  • uff sound: tough enough,rough
  • ew sound: through
  • ow sound: plough
  • owe sound: although, borough, bough, dough, furlough,though, thorough

Half Rhymes

Half rhymes, also known as sprung rhymes, have the same ending consonants in the words.

Example: Words ending with rst

  • burst
  • first
  • thirst
  • worst

Scrabble / Crosswords

This search may be helpful in Scrabble or Crosswords by answering the following type of questions:

  • Find all words ending in nt (or some other sequence of letters).
  • Find all 7 letter words ending with rt
  • Find all 4 or 5 letter words that end with ws.
  • Scrabble Word Finder 
    /
  • Word Lists 
    /
  • Words that end with…

A list of words ending with a specific first letter, any of these links will take you to a full page of words starting with that letter that are good for use in the Scrabble Crossword Game or Words with Friends. You can also try out our Words with friends helper.

Alternatively, search for words with any of these letters:

Show Advanced Options

Starts with:Ends with:

Words that end with…

  • Words that end with the letter A
  • Words that end with the letter B
  • Words that end with the letter C
  • Words that end with the letter D
  • Words that end with the letter E
  • Words that end with the letter F
  • Words that end with the letter G
  • Words that end with the letter H
  • Words that end with the letter I
  • Words that end with the letter J
  • Words that end with the letter K
  • Words that end with the letter L
  • Words that end with the letter M
  • Words that end with the letter N
  • Words that end with the letter O
  • Words that end with the letter P
  • Words that end with the letter Q
  • Words that end with the letter R
  • Words that end with the letter S
  • Words that end with the letter T
  • Words that end with the letter U
  • Words that end with the letter V
  • Words that end with the letter W
  • Words that end with the letter X
  • Words that end with the letter Y
  • Words that end with the letter Z

Expand your Russian vocabulary with this handy app. You can use this app to find any Russian word based on the last letter. Choose the letter that you want the word to end with and then how many letters in the Russian word and you can see all the Russian words that fit that criteria.

So if you select letter as A with number of letters as 10, you will get words like: аборигенкааванкамера and 1,800 other words that end with A and have 10 letters.

The first column is the word, the second column is whether it’s singular or plural and third column is the gender.

Separately, we have other resources for finding Russian anagrams, Russian words that end with, Russian words that start with, Russian words that contain which letters (either together or apart) and lots of Russian worksheet creators. 

I have a quite big string. In that big string, I want to get all UNIQUE words starts with @@ and ends with @@. Between @@ could be text, number or alphanumeric or anything.

Once I get all the UNIQUE words starting @@ and ends with @@, I want to replace each word with a value which matches a key in a different array.

Looking for the solution in C#.

Arun Chandran Chackachattil's user avatar

asked Jul 30, 2013 at 7:00

Shiras's user avatar

1

Try this regex:

@@bS+?b@@

Sample Code:

List<string> lst = new List<string>();
MatchCollection mcol = Regex.Matches(sampleString,@"@@bS+?b@@");

foreach(Match m in mcol)
{
    lst.Add(m.Tostring());
}

Here lst contains matched value(s), compare each value and replace it as per you criteria.

Sample live demo

Community's user avatar

answered Jul 30, 2013 at 7:10

NeverHopeless's user avatar

NeverHopelessNeverHopeless

11k4 gold badges34 silver badges56 bronze badges

7

Try following code (use Regex.Replace Method):

string s = @"@@Welcome@@ to @@reg-ex@@ @@world@@.";
Dictionary<string, string> sub = new Dictionary<string,string>{
    { "@@reg-ex@@", "regular expression" },
    { "@@world@@", "hell" },
};
Regex re = new Regex(@"@@.*?@@");
Console.WriteLine(re.Replace(s, x => {
    string new_x;
    return sub.TryGetValue(x.ToString(), out new_x) ? new_x : x.ToString();
}));

prints:

@@Welcome@@ to regular expression hell.

answered Jul 30, 2013 at 7:25

falsetru's user avatar

falsetrufalsetru

352k62 gold badges716 silver badges630 bronze badges

1

Example using Regex and Linq

string text = "@@bb@@@@cc@@@@sahasjah@@@@bb@@";
var matches = Regex.Matches(text, @"@@[^@]*@@");
var uniques = matches.Cast<Match>().Select(match => match.Value).ToList().Distinct();

answered Jul 30, 2013 at 7:22

tray2002's user avatar

2

Try this one mate…..

string yourString = ""; // Load your string
string[] splits = Regex.Split(yourString, "[ nt]"); //Split the long string by spaces, t and n
foreach (string str in splits)
{
    if(Regex.IsMatch(str, "^^@@.*?@@$$")) // Find words starting and ending with @@
    {
        // You may replace either splits values or build a new string according your specification
    }
}

answered Jul 30, 2013 at 7:20

Kasun Wanniarachchi's user avatar

You could maybe do the following

Regex regex = new Regex("@@(.*)@@");

Or, if you dont want Regex use the following (easier to understand i think)

var splittedString = yourString.Split(new string[] { "xx" }, StringSplitOptions.None);

answered Jul 30, 2013 at 7:07

BudBrot's user avatar

BudBrotBudBrot

1,2792 gold badges24 silver badges44 bronze badges

1

I would not use regexp for that. This is faster :

//Pseudo code
string[] parts = yourLongString.split("@@");
for(i=0;i<parts.length;i++){
    if(parts[i].indexOf(' ')<0){
        // there is no space, it is a keyword
        parts[i]=yourDictionary[parts[i]];
    }
}
yourFinalText=parts.join(' ');

answered Jul 30, 2013 at 7:39

bokan's user avatar

bokanbokan

3,5692 gold badges23 silver badges36 bronze badges

2

Понравилась статья? Поделить с друзьями:
  • Word search describes you
  • Word search days and months
  • Word search daily routine
  • Word search crossword puzzle games
  • Word search crossword game