문자열
-
[Python] 파이썬 입문 3(문자열, 리스트)CSE/Python 2015. 12. 11. 15:04
1. 파이썬 입문 1-1. 문자열 파이썬에서 문자열은 작은 따옴표, 큰 따옴표, 삼중 따옴표로 문자열을 만들 수 있습니다. 1234hi = 'hello python'sex = "Female"country = """Seoul""" cs 당연한 얘기지만 문자열 시작과 끝 부분의 따옴표는 같은 종류로 떨어져야 합니다. 파이썬에서 또한 삼중 따옴표가 유용하게 쓰이는 경우가 있습니다. 나머지 두 따옴표는 한 줄안에 논리적으로 있어야 하지만, 삼중 따옴표를 이용해서 아래와 같이 문자열을 담을 수 있습니다. 1234print ''' Content-type: text/html Hello My World Click here! '''Colored by Color Scriptercs 파이썬 문자열은 여느 언어의 색인과 마찬..
-
[javascript] 15. 문자열 메소드(String Method) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:35
JavaScript String Methods 1. Finding a String in a String indexOf() 메소드는 특정 문자열을 처음 발견하는 위치를 리턴합니다. 12345678910111213141516171819202122 Please locate where 'locate' occurs!. Try it function myFunction() {var str = document.getElementById("p1").innerHTML;var pos = str.indexOf("locate");document.getElementById("demo").innerHTML = pos;} Colored by Color Scriptercs lastIndexOf() 메소드는 특정 문자열의 마지막 위치를..
-
[javascript] 14. 문자열(Strings) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:32
JavaScript Strings 자바스크립트 문자열은 문자열을 저장하거나 변경하는데 사용합니다. 1. JavaScript Strings 문자열은 어떤 문자든 따옴표안에 넣을 수 있습니다. 1234 var answer = "It's alright";var answer = "He is called 'Johnny'";var answer = 'He is called "Johnny"';cs 2. String Length 문자열의 길이는 속성 length로 알 수 있습니다. 12var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";var sln = txt.length;cs 3. Special Characters 문자열은 따옴표 안에 있어야 하므로, 자바스크립트는 아래와 같은 문자열을 잘못 인식 할..
-
[PHP] 8. 연산자 (Operators) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:42
PHP 5 Operators 1. PHP Operators 연산자(Operator)는 변수와 값을 연산을 수행하기 위해 사용됩니다. 2. PHP Arithmetic Operators PHP 산술(Arithmetic) 연산자는 숫자 값을 일반적인 산술 연산을 하기 위해 사용됩니다. OperatorNameExampleResultShow it+Addition$x + $ySum of $x and $yShow it ≫-Subtraction$x - $yDifference of $x and $yShow it ≫*Multiplication$x * $yProduct of $x and $yShow it ≫/Division$x / $yQuotient of $x and $yShow it ≫%Modulus$x % $yRemai..
-
[PHP] 6. 문자열 (Strings) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:41
PHP 5 Strings 문자열은 문자의 연속입니다. 1. PHP String Functions 이번 장에서 문자열 조작을 위한 일반적으로 사용되는 함수에 대해 보도록 하겠습니다. 2. Get The Length of a String strlen() : 문자열의 길이를 반환하는 함수입니다. 아래 예제는 "Hello world!" 문자열의 길이를 반환하는 예제입니다. 123Colored by Color Scriptercs 3. Count The Number of Words in a String str_word_count() : 문자열의 단어의 갯수를 세는 함수입니다. 123Colored by Color Scriptercs 4. Reverse a String strrev() : 문자열을 반전시키는 함수입니다..