Question

if you can get a text that is between numbers and letters example:

¸¶¹¹,example⌐╙∙√∞∟

Well, the word "example" is changed to a textbox .. Obviously I would put between what has to be the word and in this case is:

¸¶¹¹, and ⌐╙∙√∞∟

Greetings and Thanks

Sorry for my bad English, I speak Spanish

No correct solution

OTHER TIPS

If I understand you right, you'll have a string with mixed numbers and letters. Using the regular string functions will still work. They won't care what the characters in the string represent. For instance:

        string MyString = "¸¶¹¹,example⌐╙∙√∞∟";
        if(MyString.Contains("example"))
        {
            MyString = MyString.Replace("example","and");
        }

MyString = "¸¶¹¹,and⌐╙∙√∞∟" after the replace method is called.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top