“String In Php In Hindi” Hello दोस्तों- आज इस पोस्ट में आपको String In Php In Hindi को पढ़ेंगे,, इस पोस्ट को आप पूरा पढ़िए. इस article को बहुत ही आसान और सरल भाषा में लिखा गया है. यह article आपके exam के लिए बहुत उपयोगी साबित होगी. जो छात्र परीक्षा की तैयारी रहे हैं वो सभी इस article (C लैंग्वेज क्या है C language in hindi )की मदद से आप सभी आसानी से हिंदी भाषा में सीख सकते हैं |
पीएचपी में स्ट्रिंग क्या है? ( String In Php In Hindi)
Table of Contents
पीएचपी में स्ट्रिंग क्या है? ( String In Php In Hindi )
“String In Php In Hindi ” PHP में स्ट्रिंग String बहुत महत्वपूर्ण है जिसका प्रयोग हम वेब डेवलपमेंट में करते है। String जो है वह words का समूह होता है जो multiple अक्षरों को store करता है। PHP में स्ट्रिंग्स को बनाना, change करना और विभिन्न operation करना easy होता है।
स्ट्रिंग PHP में एक विशेष प्रकार का data है जो text को store करता है। यह text या symbol का संग्रह होता है |
स्ट्रिंग निर्धारण (String Declaration)
PHP में स्ट्रिंग को निर्धारित Declaration करने के लिए वेरिएबल का उपयोग किया जाता है। एक स्ट्रिंग वेरिएबल बनाने के लिए, हम $
चिह्न के बाद वेरिएबल का नाम लिखते हैं।
<?php echo strlen(“Hello world!”); ?> |
Types of php string
PHP में स्ट्रिंग दो प्रकार की होती है |
1 Single Quotes
2 Double Quotes
Single Quotes (”)
जब एक स्ट्रिंग सिंगल कोट्स के भीतर INSERT होती है, तो PHP इसे एक शाब्दिक स्ट्रिंग के रूप में मानता है। इसका मतलब यह है कि स्ट्रिंग बिल्कुल वैसे ही प्रदर्शित की जाएगी जैसे लिखी गई है, बिना किसी व्याख्या या परिवर्तनीय प्रतिस्थापन के। एकल उद्धरण तब उपयोगी होते हैं जब आप स्ट्रिंग के शाब्दिक मूल्य को संरक्षित करना चाहते हैं, खासकर यदि इसमें विशेष वर्ण या चर शामिल हैं जिनका आप मूल्यांकन नहीं करना चाहते हैं।
Example
$name = ‘ravi’; $message = ‘Hello, $name!’; Output: Hello, $name! |
Output
Hello, $name! |
Double Quotes (“”)
डबल कोट्स विशेष एस्केप अनुक्रमों की भी व्याख्या करते हैं, जैसे कि नई लाइन के लिए \n या टैब के लिए \t। जब स्ट्रिंग का मूल्यांकन किया जाता है तो ये एस्केप अनुक्रम उनके संबंधित वर्णों में परिवर्तित हो जाते हैं।
Example
$message = “This is a new line:\nThis is a tab:\tEnd of string.”; |
सिंगल कोटेशन और डबल कोटेशन (Single Quotes and Double Quotes)
PHP में स्ट्रिंग्स को सिंगल कोटेशन Single Quotes (”) या Double Quotes डबल कोटेशन (“”) में लिखा जा सकता है।
स्ट्रिंग आपरेशन (String Operations)
स्ट्रिंग के कुछ ऑपरेशन निम्न है
1 String Casting
2 String Concatenation
3 String Slicing
4 String Search and Replace
String Casting
PHP स्ट्रिंग String के प्रकार को change के लिए कई operation प्रदान करता है, जिससे आप स्ट्रिंग को विभिन्न डेटा में change कर सकते हैं।
Example
// Example 1: String Casting $value = 42; $stringValue = (string) $value; // Example 2: Alternative Syntax $value = 3.14; $stringValue = strval($value); // Example 3: Concatenation with an Empty String $value = true; $stringValue = $value . “”; // Example 4: Using the String Conversion Function $value = [1, 2, 3]; $stringValue = implode(“, “, $value); |
String Concatenation
स्ट्रिंग कॉन्सटेनेशन से तात्पर्य दो या दो से अधिक स्ट्रिंग्स को एक साथ मिलाने से है। PHP में, हम इसका उपयोग करते हैं।
Example
// Example 1: Using the Concatenation Operator $name = “John”; $greeting = “Hello, ” . $name . “!”; // Example 2: Using the Concatenation Assignment Operator $name = “Mary”; $greeting = “Hello, “; $greeting .= $name . “!”; // Example 3: Combining Variables and Constants $firstName = “Jane”; $lastName = “Doe”; $age = 25; $message = “My name is ” . $firstName . ” ” . $lastName . ” and I am ” . $age . ” years old.”; // Example 4: Concatenating Strings with Special Characters $line1 = “This is the first line.”; $line2 = “This is the second line.”; $combinedLines = $line1 . “\n” . $line2; |
String Slicing
स्ट्रिंग स्लाइसिंग String Concatenation में स्ट्रिंग के एक हिस्से को निकालना शामिल है। आप विभिन्न विधियों का उपयोग करके किसी स्ट्रिंग से विशिष्ट वर्ण या सबस्ट्रिंग पुनर्प्राप्त कर सकते हैं।
Example
// Example 1: Extracting a Substring by Position $text = “Hello, World!”; $substring = substr($text, 7, 5); // Example 2: Extracting a Substring from the End $text = “Welcome to PHP”; $substring = substr($text, -3); // Example 3: Extracting Characters $text = “Lorem ipsum”; $firstCharacter = $text[0]; $lastCharacter = $text[strlen($text) – 1]; // Example 4: Splitting a String into an Array $text = “apple, banana, cherry”; $fruits = explode(“, “, $text); |
String Search and Replace
PHP एक स्ट्रिंग के भीतर विशिष्ट sub string की खोज करने और उन्हें अन्य मानों के साथ बदलने के लिए function provide करता है।
Example
// Example 1: Finding a Substring $text = “Hello, World!”; $position = strpos($text, “World”); // Example 2: Replacing a Substring $text = “Hello, World!”; $newText = str_replace(“World”, “PHP”, $text); // Example 3: Case-Insensitive Search $text = “Hello, World!”; $position = stripos($text, “world”); // Example 4: Regular Expression Search and Replace $text = “Hello, World!”; $newText = preg_replace(“/world/i”, “PHP”, $text); |
String in php languge in hindi FAQ
- स्ट्रिंग क्या है? स्ट्रिंग एक डेटा प्रकार है जो टेक्स्ट या वर्णों को संग्रहीत करता है।
- क्या स्ट्रिंग परिवर्तनशील है? नहीं, पीएचपी में स्ट्रिंग अपरिवर्तनशील होती है, जिसका अर्थ है कि इसे एक बार बनाए जाने के बाद परिवर्तित नहीं किया जा सकता है।
- स्ट्रिंग के लिए कौन-कौन से ऑपरेशन उपलब्ध हैं? पीएचपी में स्ट्रिंग के लिए कई ऑपरेशन उपलब्ध हैं, जैसे कि कंकेटेनेशन, विभाजन और विद्यमानता।
- स्ट्रिंग फ़ंक्शन का उपयोग कैसे किया जाता है? पीएचपी में कई स्ट्रिंग फ़ंक्शन उपलब्ध हैं जो स्ट्रिंग को प्रसंस्करण करने के लिए उपयोगी होते हैं, जैसे कि
strlen()
,strpos()
, औरstr_replace()
।
Read More…. C LANGUAGE NOTES हिन्दी मे
CONCLUSION :-
आज के इस आर्टिकल मे हम String In Php In Hindi के बारे मे विस्तार से जाना आशा है की यह ARTICAL php string (php में string क्या है in hindi ) आप के लिए HELPFUL रहा होगा | अगर यह ARTICAL आप को पसंद आया हो तो इसे अपने दोस्तों के साथ SHARE जरूर करे | आप हमे COMMENT के माध्यम से सुझाव दे सकते है आप हमे Email-id studentinsidelibarary013@gmail.com पर अपने सुझाव दे सकते है |
String In Php In Hindi, String In Php In Hindi , String In Php In Hindi, String In Php In Hindi
erythromycin stearate increases levels of ibrutinib by affecting hepatic intestinal enzyme CYP3A4 metabolism buy priligy in the usa
buy priligy tablets He felt that Karl was about to launch a very powerful attack, As the figure quickly retreated, Blood Moon said to Kavin, This is impossible
However one needs to sit down with a physician to review all potential side effects even with short term use priligy 30mg price
My results were as follows cytotec price philippines 2021
My husband couldn t get her off get generic cytotec no prescription He s come back after a long time out
how to buy cheap cytotec online They may vary in cost, depending on someone s medical insurance
Your article helped me a lot, is there any more related content? Thanks!
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article.
Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.