Как найти последний символ строки
привет,
мой вопрос заключается в том, как найти последний символ слова Example_10 или любого другого слова...
Попробовать это:-
char c = youText.Last();
Большое спасибо
Без проблем.
Простой метод
str = str.Substring(str.Length - 1);
Используйте следующие коды:
string sAllCharacter="abcdef....yz"; char cLastCharacter=sAllCharacter[sAllCharacter.Lenght-1]; output=z;
Отредактированный ответ:
Добавлены предварительные теги
Большое спасибо
Обратитесь к этим:
http://www.dotnetperls.com/string-char[^]
http://bytes.com/topic/c-sharp/answers/735358-get-last-two-characters-string[^]
Большое спасибо
Привет,
string inputString = "CodeProject"; string lastCharacter = inputString.Substring(inputString.Length - 1);
Отредактированный ответ:
Добавлены предварительные теги
Большое спасибо
string inputText = "Example_10"; textBox1.Text = inputText.Remove(0,inputText.Length-1);
Большое спасибо
попробуй вот это
String s="Some text"; string last = s.Substring(s.Length - 2, 1);
Большое спасибо
/** * Note that Java console applications need to be run through the java runtime * by running "java -jar JarFile.jar" in the command line. * Java console applications can not be previewed in the Compilr IDE, only applets can. */ public class isPalindrome { public static boolean status = true; static String word; static int strLength = word.length(); public void setword(String word) { isPalindrome.word = word; } public String[] getWord() { String[] word = new String[] {"Nothign", "super"}; return word; } /** * This is the main entry point for the application * @return */ public static void main(String[] args) { if (status == false ) { System.out.println("You didn't entered a Palindrome"); } else { System.out.println("You entered a Palindrome" + get.word); } } public static void isValidEmpNum(String[] array, String s) { if(s.charAt(0) == s.charAt(strLength - 1)) status = true; else status = false; return; } }