码迷,mamicode.com
首页 >  
搜索关键字:indexof    ( 2307个结果
js将图片转换为base64
var img = "imgurl";//imgurl 就是你的图片路径 function getBase64Image(img) { var canvas = document.createElement("canvas"); canvas.width = img.width; canvas.he ...
分类:Web程序   时间:2021-02-25 11:44:24    阅读次数:0
java基础--容器 List、ArrayList、LinkList
java基础--容器 List、ArrayList、LinkList 1.容器的总体框架 详细的贴一张大佬的图 ,有点错的地方就是Map那个分支是单独的,和Collection接口没有任何关联。原文地址 2.容器简述 容器简单点可以说就是一个桶,你可以往桶里放东西、拿东西、查看数据 不同的桶放不一样 ...
分类:编程语言   时间:2021-02-19 13:22:05    阅读次数:0
String类的常用方法
一、String类的常用方法 返回当前字符串中给定位置的字符: char charAt(int index) 返回给定字符串在当前字符串中的位置: int indexOf(String str) 返回当前字符串的长度: int length() 判断当前字符串是以指定字符开始或结束的: boolea ...
分类:其他好文   时间:2021-02-18 13:42:38    阅读次数:0
JavaSE-统计字符在字符串中出现的次数
/** * 方法一:使用indexOf和subString方法,循环判断并截取 */ public static void getStrCount1(String str, String con) { int count = 0; while (str.indexOf(con) >= 0) { // ...
分类:编程语言   时间:2021-02-17 14:46:16    阅读次数:0
Vue3 知识
Vue3 使用 Proxy 来监听数据的变化 响应性是 VueJS 的核心,数据必须具有依赖性,可以观察并进行更新以响应任何更改,Vue2 使用 Object.defineProperty 创建 getter 和 setter 来实现响应式。 使用Object.defineProperty有两个主要 ...
分类:其他好文   时间:2021-02-05 10:30:11    阅读次数:0
[Dart语法]第三章:数据类型-字符串类型
字符串类型 声明变量 //声明字符串 String str1 = 'hello'; String str2 = 'dart'; //字符串拼接 print('$str1 $str2'); print(str1 + " " + str2); 属性 String str = 'hello world'; ...
分类:其他好文   时间:2021-02-01 12:21:53    阅读次数:0
JS数组去重
// 演示代码 function unique(arr) { /* your code */ } let strings = ["Hare", "Krishna", "Hare", "Krishna", "Krishna", "Krishna", "Hare", "Hare", ":-O" ]; a ...
分类:编程语言   时间:2021-01-22 11:50:53    阅读次数:0
javascript数据类型之字符串
字符串常用方法 1 字符串的定义 /* 凡是引号当中的内容都是字符串;?? */ "该号码可注册" "12916316319" "" "http://www.163.com" 'http://www.163.com' 2 字符串的长度 str.length /* str.length */ "mic ...
分类:编程语言   时间:2021-01-19 12:23:02    阅读次数:0
Chapter 3 : Core Java APIs
Chapter 3 : Core Java APIs Class String API stands for application programming interface. If both operands are numeric, + means numeric addition. If e ...
分类:编程语言   时间:2021-01-18 10:51:07    阅读次数:0
[javascript] ie下不支持incudes属性和方法
在使用elemetui的时候 , 在ie11下面会遇到这个报错 不支持incudes属性和方法 数组.incudes("元素") 是检测数组中是否包含某元素 支持的版本是 可以替换为 数组.indexOf("元素") > 0 ...
分类:编程语言   时间:2021-01-11 11:05:06    阅读次数:0
2307条   上一页 1 2 3 4 5 ... 231 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!