码迷,mamicode.com
首页 >  
搜索关键字:uppercase    ( 435个结果
LeetCode | 0409. Longest Palindrome最长回文串【Python】
LeetCode 0409. Longest Palindrome最长回文串【Easy】【Python】【字符串】 Problem "LeetCode" Given a string which consists of lowercase or uppercase letters, find the ...
分类:编程语言   时间:2020-03-19 21:26:18    阅读次数:69
JavaScript 字符串对象
1.字符串的不可变 指的是已经存在的值,看似可以被改变,其实只是变量指向的地址改变了,内存中新开辟了一个内存空间,原来的值并未被抹去。 var str='pink'; str='red'; 首先,内存中开辟了一个内存空间用来存放pink,str指向这个内存地址,当执行到第二句时,内存中开辟了一个新的 ...
分类:编程语言   时间:2020-03-12 23:19:53    阅读次数:60
Palindrome
A palindrome is a symmetrical string, that is, a string read identically from left to right as well as from right to left. You are to write a program ...
分类:其他好文   时间:2020-02-02 19:30:50    阅读次数:72
Linux command line shortcut
It may or may not surprise you to know that the bash shell has a very rich array of convenient shortcuts that can make your life, working with the com ...
分类:系统相关   时间:2020-01-24 09:24:39    阅读次数:99
VideLoginForm案例
VideLoginForm案例 ~~~html Document Sing In Forget Password ~~~ ~~~css body { margin: 0; padding: 0; width: 100%; height: 100vh; / background: 000; / fon ...
分类:其他好文   时间:2020-01-21 23:32:35    阅读次数:102
大写加下划线转化成小写驼峰形式
例如把RESULT_LIST转化成resultList字符串 第一:通过input.toLowerCase().split(spliter)用‘_’把字符串分割成多个小写字母的数组。 第二:把第一个数组以外的数组首字母变大写。 第三:通过append()拼接字符串。 1 //型如XXX_YYY_ZZ ...
分类:其他好文   时间:2020-01-19 16:32:09    阅读次数:633
【leetcode】1320. Minimum Distance to Type a Word Using Two Fingers
题目如下: You have a keyboard layout as shown above in the XY plane, where each English uppercase letter is located at some coordinate, for example, the l ...
分类:其他好文   时间:2020-01-17 11:45:26    阅读次数:67
js中身份证含有小写 x时,自动转为大写(jsp)
1.js方法封装 MC.upperCase=function chang(domId){ $(domId).on("input propertychange",function(){ var a=$(this).val(); a=a.toUpperCase(); $(domId).val(a) }) ...
分类:Web程序   时间:2020-01-14 17:49:15    阅读次数:310
JS MD5加密
/* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. * Version 2.1 Copyright (C) Pa ...
分类:Web程序   时间:2019-12-23 20:42:51    阅读次数:85
利用css将英文转为大写或小写
项目需要在后台接收的字段值为小写,但在页面上显示大写英文,但操作页面之后,最终传给后台的依旧是小写,所以就需要使用css转化一下即可 <li>This.is.a.book,全部转为大写:</li> <li style="text-transform: uppercase">This.is.a.boo ...
分类:Web程序   时间:2019-12-22 13:02:44    阅读次数:121
435条   上一页 1 2 3 4 5 6 ... 44 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!