标签: string-comparison

应该在字符串中使用严格的比较吗?

我知道,例如,使用:

if (in_array('...'), array('.', '..', '...') === true)
Run Code Online (Sandbox Code Playgroud)

过度:

if (in_array('...'), array('.', '..', '...') == true)
Run Code Online (Sandbox Code Playgroud)

可以提高性能并避免一些常见错误(例如1 == true),但是我想知道是否有理由对字符串使用严格的比较,例如:

if ('...' === '...')
Run Code Online (Sandbox Code Playgroud)

似乎做的完全相同:

if ('...' == '...')
Run Code Online (Sandbox Code Playgroud)

如果有人可以为这个主题带来一些启示,我很感激.

php string comparison strict string-comparison

1
推荐指数
1
解决办法
2130
查看次数

如何在C中部分比较两个字符串?

假设我有以下内容:

Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Run Code Online (Sandbox Code Playgroud)

如何使用C 搜索dummydummy text在该字符串中?有没有简单的方法来做或只有强大的字符串操作?我只需要搜索它并返回一个带有结果的布尔值.

编辑:
你们围绕这个主题创建了一个大讨论,并提出了一些算法,我不介意,因为这可能对其他人,甚至将来我都有用.但无论时间/空间的复杂性如何,我真正想要的是最简单的方法.这对我正在做的事情并不重要.因此,strstr轻松快速地解决了我的问题.我真的得给我一些标准的C函数chet表.

c string string-comparison

1
推荐指数
1
解决办法
7660
查看次数

相同的字符串但完全不相同

我正在用JAVA和PHP编程.我有一个字符串比较的问题.实际上根据JAVA,两个相同的字符串(在我看来)并不相同.

问题背景:

我设置使用Cookie $userid_hash = sha1($row["profileId"].'helloworld'); 一起$userid = $row["profileId"].这样做是为了防止用户访问另一个帐户.

现在的问题是我有一些用JAVA编写的服务器代码,它正在散列userid并与之进行比较userid_hash.我在控制台中打印出来.两个字符串都相同.

但问题是,如果有任何欺诈企图,我已将其余代码包含在if语句中.根据我在Eclipse中的控制台,java将字符串解释为不一样,即使它们是.这个问题的根源是什么?

我使用这个作为我的SHA1哈希语法错误的我的SHA1代码.我叫它用"somestring".getBytes("UTF-8");.我的MySQL数据库是UTF-8编码的,我在Eclipse中输入的任何字符串也都是UTF-8编码的.我做错了什么?我该如何找到问题?

编辑:

这是比较前java中的println语句:

ab968f939a4869339b5cdb611674bdf4954f2f6a ab968f939a4869339b5cdb611674bdf4954f2f6a

编辑:

如果声明:

if(packageName.toSHA1((profileId+"secret").getBytes("UTF-8")) == profileId_ver)
Run Code Online (Sandbox Code Playgroud)

java string-comparison

1
推荐指数
1
解决办法
400
查看次数

检查对象实例的属性是否为"空白"

我试图实现下面的代码,但没有成功.基本上,我想设置显示名称,thisPhoto.userFullName如果它不是'空白',否则显示thisPhoto.userName.

UILabel *thisUserNameLabel = (UILabel *)[cell.contentView viewWithTag:kUserNameValueTag];

NSLog(@"user full name %@",thisPhoto.userFullName);
NSLog(@"user name %@",thisPhoto.userName);
if (thisPhoto.userFullName && ![thisPhoto.userFullName isEqual:[NSNull null]] ) 
{
   thisUserNameLabel.text = [NSString stringWithFormat:@"%@",thisPhoto.userFullName];
}
else if (thisPhoto.userFullName == @"")
{
   thisUserNameLabel.text = [NSString  stringWithFormat:@"%@",thisPhoto.userName];
}
Run Code Online (Sandbox Code Playgroud)

目前,即使userFullName是空白,我userName仍然没有显示在屏幕上.

cocoa-touch objective-c string-comparison uilabel ios

1
推荐指数
1
解决办法
2368
查看次数

为什么两个字符串看起来相同,但它们不是?

我的PHP代码:

$hello = "Hello, world! ";
echo $string1 = sprintf("%'#-20s\n", $hello); // Displays "Hello, world! ######"
echo $string2 = str_pad($hello, 20, "#");     // Displays "Hello, world! ######"
echo ($string1 == $string2) ? "Indeed they're equal" : "They're not equal";
                                              //  Displays "They're not equal"
echo strcmp($string1, $string2); // Displays "-1", which (according to PHP Manual)
                                 // means that $string1 is less than $string2
Run Code Online (Sandbox Code Playgroud)

字符串$string1$string2不相等的原因是什么?

php string-comparison

1
推荐指数
1
解决办法
331
查看次数


PHP最近的字符串比较

可能重复:
PHP中的字符串相似性:levenshtein类似于长字符串的函数

我有我的主题字符串

$subj = "Director, My Company";

以及要比较的多个字符串的列表:

$str1 = "Foo bar";
$str2 = "Lorem Ipsum";
$str3 = "Director";

我想在这里实现的是找到与之相关的最近的字符串$subj.有可能吗?

php similarity string-comparison

1
推荐指数
1
解决办法
5564
查看次数

如何比较char或string变量是否等于某个字符串?

我试图让这个循环工作,但由于某种原因,它会自动"假设"用户输入错误.

value是一个字符串(它应该是一个字符?) , ,A 是字符串(他们应该是char?)BC

void Course::set()
{
    cout << "blah blah blah" << endl;
    cout << "youre options are A, B, C" <<endl;
    cin >> value;

    while(Comp != "A" || Comp != "B" || Comp != "C") 
    {
        cout << "The character you enter is not correct, please enter one of the following: You're options are A, B, C" << endl;
        cin >> value;
    }
    cout << endl;
}
Run Code Online (Sandbox Code Playgroud)

c++ comparison string-comparison logical-operators

1
推荐指数
1
解决办法
8729
查看次数

使用单词列表进行Python字符串比较

最终我将能够在聊天室中发布这样的简单问题,但是现在我必须发布它.我仍在努力解决Python中的比较问题.我有一个包含我从文件中获取的字符串的列表.我有一个函数,它接受单词列表(以前从文件创建)和一些'密文'.我试图使用Shift Cipher破解密文.我的问题与比较整数是一样的.虽然我可以看到在尝试使用print语句进行调试时,我的密文将被转移到单词列表中的单词,但它永远不会计算为True.我可能正在比较两种不同的变量类型,或者/ n可能会抛弃比较.对于今天的所有帖子感到抱歉,我今天正在做很多练习问题,为即将到来的作业做准备.

  def shift_encrypt(s, m):

   shiftAmt = s % 26
   msgAsNumList = string2nlist(m)

   shiftedNumList = add_val_mod26(msgAsNumList, shiftAmt)
   print 'Here is the shifted number list: ', shiftedNumList

   # Take the shifted number list and convert it back to a string
   numListtoMsg = nlist2string(shiftedNumList)
   msgString = ''.join(numListtoMsg)

   return msgString

 def add_val_mod26(nlist, value):
   newValue = value % 26
   print 'Value to Add after mod 26: ', newValue
   listLen = len(nlist)
   index = 0
   while index < listLen:
       nlist[index] = (nlist[index] + newValue) …
Run Code Online (Sandbox Code Playgroud)

python list string-comparison

1
推荐指数
1
解决办法
1176
查看次数

检查字符串的语法 - C#

我试图找出如何分析C#中句子的语法.在我的情况下,我有一个句法,每个句子必须遵循.语法如下所示:

'B'是'C'.

每个句子都必须包含五个单词.我的句子的第一个词必须是'A',第三个'是'和第四个'a'.

现在我想检查一个测试句子,如果它符合我的语法.

测试句子:

狗不是猫.

在这个例子中,测试句子是错误的,因为第四个单词是'no'而不是'a'它应该基于语法.

我读了LINQ,我可以查询包含一组指定单词的句子.

代码看起来像这样:

//Notice the third sentence would have the correct syntax
string text = "A Dog is no Cat. My Dog is a Cat. A Dog is a Cat.";

//Splitting text into single sentences
string[] sentences = text.Split(new char[] { '.'});

//Defining the search terms
string[] wordToMatch ={"A", "is"};

//Find sentences that contain all terms I'm looking for
var sentenceQuery = from sentence in sentences
        let w = sentence.Split(new Char[] {'.'})
        where w.Distinct().Intersect(wordsToMatch).Count …
Run Code Online (Sandbox Code Playgroud)

c# linq string string-comparison

1
推荐指数
1
解决办法
208
查看次数