使用到的函数 CONCAT(str1,str2):字符连接函数 UPPER(str):将字符串改为大写字母 LOWER(str):将字符串改为小写字母 LENGTH(str):判定字符串长度 SUBSTRING(str,a,b):提取字段中的一段,从字符串str的第a位开始提取,提取b个字符 LEF ...
分类:
数据库 时间:
2021-02-20 12:11:20
阅读次数:
0
2021-02-12:如何判断两个字符串是否互为旋转字符串? 福哥答案2021-02-12: 假设字符串str1是“ABCDE”,字符串str2是“CDEAB”。字符串str2可以拆分成“CDE”和“AB”,可以拼成“ABCDE”。所以str1和str2互为旋转字符串。 解法:1.判断str1和st ...
分类:
其他好文 时间:
2021-02-16 12:18:04
阅读次数:
0
字符串类型 声明变量 //声明字符串 String str1 = 'hello'; String str2 = 'dart'; //字符串拼接 print('$str1 $str2'); print(str1 + " " + str2); 属性 String str = 'hello world'; ...
分类:
其他好文 时间:
2021-02-01 12:21:53
阅读次数:
0
# 打印每个o出现的位置 str1 = "hellopythonhelloworld" str2 = 'hellopythonhelloworld' str3 = 'hellopythonhelloworl' index = 0 for i in str1: if i == 'o': print(i ...
分类:
其他好文 时间:
2021-01-11 10:40:33
阅读次数:
0
问题 求两个字符串的 LCS ?度: 输?: str1 = "abcde", str2 = "ace" 输出: 3 解释: 最?公共?序列是 "ace",它的?度是 3 思路 对于两个字符串的动态规划问题,?般来说都是定义 DP table,容易写出状态转移?程, dp[i][j] 的状态可以通过之 ...
分类:
其他好文 时间:
2021-01-01 12:21:19
阅读次数:
0
# 1. python【字典】转json格式【str】 import json dic = {'a': 1, 'b': 2, 'c': 3} str1 = json.dumps(dic, sort_keys=True, indent=4, separators=(',', ':')) str2 = ...
分类:
编程语言 时间:
2020-12-30 11:14:48
阅读次数:
0
1.find() 返回值为目标元素的下标,若不存在目标元素则返回-1 #include<iostream> using namespace std; int main() { string str1 = "A BC", str2 = "abc"; char c = '5'; int i; i= st ...
分类:
其他好文 时间:
2020-12-19 13:09:58
阅读次数:
2
concat()函数 1. 功能: 返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。 2. 语法 concat(str1, str2,...) 3. 例子 案例一: mysql> select concat('苹果','香蕉','梨子'); + + | CONCA ...
分类:
数据库 时间:
2020-11-19 12:24:20
阅读次数:
12
思路参考:最长公共子序列 public class Solution { /** * longest common substring * @param str1 string字符串 the string * @param str2 string字符串 the string * @return st ...
分类:
其他好文 时间:
2020-10-08 18:32:02
阅读次数:
18
功能:将多个字符串连接成一个字符串concatconcat(str1,str2,...)concat_ws(一次性可以指定分隔符号)concat_ws(separator,str1,str2,...)group_concat(将groupby产生的同一个分组中的值连接起来,返回一个字符串结果)group_concat([distinct]连接字段[orderby排序字段asc/desc][sepa
分类:
数据库 时间:
2020-09-17 20:17:41
阅读次数:
40