string-comparison

    0熱度

    1回答

    以下內容將NSString設置爲文本字段的StringValue。然後,字符串在General_combinations - (IBAction)SendAction:(id)sender { NSString *MyLoggerCommand = [CommandBox stringValue]; [CommandBox setStringValue:@""];

    1熱度

    7回答

    我試圖實現下面的代碼沒有成功。基本上,我想設置爲使用thisPhoto.userFullName顯示名稱,如果它不是「空白」,否則顯示thisPhoto.userName代替。 UILabel *thisUserNameLabel = (UILabel *)[cell.contentView viewWithTag:kUserNameValueTag]; NSLog(@"user full n

    3熱度

    2回答

    我查了手冊中的函數,但是我仍然沒有得到這個。根據編寫代碼的人,如果用戶輸入「y」,則執行此功能(此處未顯示)。但是,由於!,在我看來,如果用戶輸入的內容不是「y」,函數(此處未顯示)會執行。 請解釋(我「馬相對新手,所以儘可能多的細節可能會有所幫助)。感謝 if(!strncasecmp(trim(fgets(STDIN)),'y',1))

    0熱度

    2回答

    可能重複: Are string.Equals() and == operator really same? 串類提供comparsion == string.Equals不同的方法 string.Compare 就是相對於String類==和Equals之間的區別? 因爲equals方法是通過其比較的對象的refernces的System.Object的提供

    0熱度

    2回答

    基本上,我有一個目錄,有一堆我加載到數組中的文件名。文件名告訴我他們代表的文本(即序言,chapterone,chaptertwo),但在文件名中我還包含一個序號以保證它們的順序。所以'prollecture1.xml','prollecture2.xml','prollecture3.xml',。 。 。 'prollecture12.xml','chapteronelecture13.xml'

    339熱度

    10回答

    我需要一種方法來多個字符串比較測試字符串並返回酷似串吧: TEST STRING: THE BROWN FOX JUMPED OVER THE RED COW CHOICE A : THE RED COW JUMPED OVER THE GREEN CHICKEN CHOICE B : THE RED COW JUMPED OVER THE RED COW CHOICE C : THE R

    9熱度

    3回答

    我跳進這個意外並沒有任何線索,爲什麼發生這種情況 string sample = "Hello World"; if (sample.Contains(string.Empty)) { Console.WriteLine("This contains an empty part ? at position " + sample.IndexOf(string.Empty));

    1熱度

    2回答

    我有兩個字符串: 1> +20122260699 2> +2012-2260 699 我想測試,如果他們都是平等的,沒有計算比數字0-9的任何其他。我知道我可以使用一系列字符串替換,但是有沒有更有效的方法呢?謝謝!

    1熱度

    1回答

    我想比較兩個字符串 String1來自文件。 String2的是一個NSArray(預定義列表) 我想兩個字符串比較,如果它是一個比賽,也許做一個NSLog NSStringCompareOptions compareOptions = NSDiacriticInsensitiveSearch; NSArray* countryIndex = [[NSArray alloc] initWithO

    0熱度

    6回答

    在C如何strcmp只是開始2個字符?然後連接另一個字符串?事情是這樣的: char s[10]; scanf("%s",s); /* if i input "cs332" or "cs234", anything start with cs */ if (strcmp("cs",???)==0) strcat(s,"by professor");