Uncategorized

javascript regex remove characters from string

Using Regular Expression. For example, let’s uppercase all matches: let str = "html and css"; let result = str.replace(/html|css/gi, str => str.toUpperCase()); alert( result); Replace each match by its position in the string: Remove all Whitespace From a String. To remove all the non-alphanumeric characters from a string, we can use a regex expression that matches all the characters except a number or an alphabet in JavaScript. In that regex for illegal characters I should not have put the \g modifier at the end. Example: Sample Vendor *FLC. // app.js str = 'AppDividend'; console.log('Original String:', str); newStr = str.substr(1, str.length); console.log('After removing the first character:', newStr); It converts to supported escape characters such as \a, \b, \e, \n, \r, \f, \t, \v, and alphanumeric characters. To remove all extra white spaces just use this javascript code after the line break removal code: //Replace all double white spaces with single spaces someText = someText.replace(/\s+/g," "); This javascript regex finds multiple whitespaces and replaces them with a single white space. However, if you're unable to use the server (or you use Node.js) to achieve this task, then you can still use Javascript to do it. In the above output image, you can see, when I clicked on "Remove Special Characters" button to display an alert text-box input text are not showing the special characters in the result string but I putting the some special charters in the in the text-box, you can see, edit and click on below given plunker link. Combine this Regex to match all whitespace appearances in the string to ultimately remove them: It’s often useful be be able to remove characters from a string which aren’t relevant, for example when being passed strings which might have $ or £ symbols in, or when parsing content a user has typed in. Regular Expressions (also called RegEx or RegExp) are a powerful way to analyze text. With RegEx, you can match strings at points that match specific characters (for example, JavaScript) or patterns (for example, NumberStringSymbol - 3a&). The.replace method is used on strings in JavaScript to replace parts of string with characters. It´s called Encoding::toUTF8().. You dont need to know what the encoding of your strings is. 2. Since all the printable characters of ASCII are conveniently in one continuous range, we used the following to filter all other characters out of our string in JavaScript. JavaScript Remove Last Character From String Using Splice() Now we remove last character from a string in javscript using splice() method. ... Browse other questions tagged javascript strings regex or ask your own question. A for Loop removed 100 000 times the unicode characters of the string value. Python’s regex module provides a function sub () i.e. We can do it in many ways. replace() Function: This functiion searches a string for a specific value, or a RegExp, and returns a new string where the replacement is done. Are you searching for How to remove newlines (characters) from a string in php? var strWithOutQuotes= strWithQuotes.replace(/['"]+/g, '') ['"] is a character class, matches both single and double quotes. The range of characters between (0080 – FFFF) are removed. It can be Latin1 (ISO8859-1), Windows-1252 or UTF8, or the string can have a mix of them. Use the JavaScript replace() method with RegEx to remove a specific character from the string. \w+ : One or more word characters. I made a function that addresses all this issues. I currently have: var x = "Cost is $100.00"; var y = x.replace(/\D/g, ''); which removes all non-digit characters, including the "." function trim(str, characters) { var c_array = characters.split(''); var . Adding to Amit Joki's excellent solution (sorry I don't have the rep yet to comment): since match returns an array of results, if you need to remove unwanted characters from within the string, you can use join: input = ' (800) 555-1212'; result = input.match (/ [0-9]+/g).join (''); console.log (result); // '8005551212'. It’s often useful be be able to remove characters from a string which aren’t relevant, for example when being passed strings which might have $ or £ symbols in, or when parsing content a user has typed in. Of course this will remove all punctuation, but you can always modify the regex to suit your specific condition. re.sub(pattern, repl, string, count=0, flags=0) re.sub (pattern, repl, string, count=0, flags=0) re.sub (pattern, repl, string, count=0, flags=0) It returns a new string. character class is different than the \W character class (non-word characters). start index: 0. end index: str.length ()-1. Remove Extra Spaces From a String. reactgo.com recommended course. The example code snippet helps to remove comma (,) characters from the start and end of the string using JavaScript. sltrip special characters from string javascript. * @param {string} str - a string containing potentially invalid XML characters (non-UTF8 characters, STX, EOX etc) * @param {boolean} removeDiscouragedChars - should it remove discouraged but valid XML characters. There are two ways to create a regular expression: Regular Expression Literal — This method uses slashes ( / ) to enclose the Regex pattern: var regexLiteral = /cat/; If start is negative or larger than the length of the string, start is set to 0 var strWebsiteName = "\ncode.tutsplus.com\n\n\n\n"; var strNewWebsiteName = strWebsiteName.replace (/ (\n)/gm, removeCharCallback); console.log (strNewWebsiteName); Instead of directly replacing the \n character with an empty string, we’ve used a callback function in the second argument of the replace method. Regular Expression (RegEx) is the easiest way to trim a specific character from a string in JavaScript. For example, re = /\w+\s/g creates a regular expression that looks for one or more characters followed by a space, and it looks for this combination throughout the string. In this project i will be using two multiline textboxes and a button to demonstrate the functionality: It is fed into replace function along with string to replace with, which in our case is an empty string. Whose special characters you want to remove from a string, prepare a list of them and then user javascript replace function to remove all special characters. The regular expression /duck/gi performs a global case-insensitive search (note i and g flags)./duck/gi matches 'DUCK', as well as 'Duck'.. JavaScript Regex to remove text after a comma and the following word? In our case, of course, the first solution is the easier one, but whenever we would like to delete other characters than zeros, we have to use the regular expression. Time Complexity: O(N) Auxiliary Space: O(1) Regular Expression Approach: The idea is to use regular expressions to solve … Splice is a very nice method which also works with array also. JavaScript Remove Last Character From String Using Splice() Now we remove last character from a string in javscript using splice() method. Parameter Description; start: Required. A simple tr should do the trick, .tr ('^A-Za-z0-9', ''). Definition and Usage. Using Regular Expression. The solution should remove all newline characters, tab characters, space characters, or any other whitespace character from the string. First character is at index 0. This approach uses a Regular Expression to remove the Non-ASCII characters from the string like the previous example. In order to remove all non-numeric characters from a string, replace() function is used. I want to remove not only spaces, but certain characters, as well from the beginning or end of a JavaScript string. If there are no parentheses in the regexp, then there are only 3 arguments: func (str, offset, input). Java. It is often used like so: const str = 'JavaScript'; const newStr = str.replace ("ava", "-"); console.log (newStr); // J-Script. Questions: function to remove special characters javascript. It is separated from the vendor name by a space as well. The position where to start the extraction. One peculiar thing I find in Javascript is that String.replace only replaces the first instance of the substring, unless you use a Regex . The method replaces the string with the specified match. Splice is a very nice method which also works with array also. To remove the first character from a string, pass the first parameter as 1 and the second parameter as string.length. I want the result to be 100.00. Also this regular expression removes the leading zeros from a string. Using a Regular Expression With replace() Regular expressions are very well supported across all browsers (new and old). remove a special character from string javascript. Syntax: string.replace(/regExp/g, ''); Normally in the server side you could use a series of PHP functions (such as strip_tags) and to remove HTML and ugly formatting. Another way to remove the last character from a string is by using a regular expression with the replaceAll() method. To remove all extra white spaces just use this javascript code after the line break removal code: //Replace all double white spaces with single spaces someText = someText.replace(/\s+/g," "); This javascript regex finds multiple whitespaces and replaces them with a single white space. Tags JavaScript Regex Statements Remove % from String Remove & Remove Control Characters Remove Special Characters Special Characters Utilities Hello, nice to meet you Enter your email address to subscribe to this blog and receive notifications of new posts by email. get last 4 characters of string javascript; js remove last 3 char; get string last string javascript regex; get string last character javascript regex; java delete last character from string; javascript display last 4 of string; get last character of strung js; remove the first and last character string java; last char of … For this, use match () along with split (). ... To remove newline character from a string using php regex just use this code: after removing “I live in US” and keeping the rest. Instead of "0" in "/^(0+)/g", you can simply use an other character for this. You create a regular expression based on the string to remove from the actual string. remove-invalid-xml-characters.js. Else the character is a non-numeric character. The replace() method searches a string for a specified value, or a regular expression, and returns a new string where the specified values are replaced.. With RegEx, you can match strings at points that match specific characters (for example, JavaScript) or patterns (for example, NumberStringSymbol - 3a&). Brackets can be removed from a string in Javascript by using a regular expression in combination with the .replace () method. For example, remove all the lowercase characters from the string. To remove the all non-numeric characters from a string we can use the replace method by passing the /\D/g regex as a first argument and empty string ( '') as a second argument in JavaScript. In the above output image, you can see, when I clicked on "Remove Special Characters" button to display an alert text-box input text are not showing the special characters in the result string but I putting the some special charters in the in the text-box, you can see, edit and click on below given plunker link. If you're brand new to regex and would like some practice before reading on, check out our interactive coding challenges. It may be of different types. This would be the resultant string −. Expand the whitespace selection from a single space to multiple using the \s+ RegEx. 1 Like. For example, let’s say we have the following string: const names = " ['Tommy Vercetti','Carl Johnson']" We can utilize .replace () along with regex in order to remove the brackets from the string: Parameter Description; start: Required. Using Regular Expression. If start is negative, substr() uses it as a character index from the end of the string. A regular expression is used instead of the string along with the global property. javascript use variable regex. match ( re ) ; console . As a matter of fact, according to the official XML 1.0 specifications, a valid XML file should only Let’s remove the first character from string using substr function in the below example. JavaScript provides three functions for performing various types of string trimming. ^0 character enables to match the zero at the beginning of the string and replace it with an empty string. In a regex, a period character by itself is used to symbolize a wildcard; as in, it can represent any character. private static String cleanTextContent (String text) {. The above method yields the same result as the expression: The first, trimLeft (), strips characters from the beginning of the string. However, str[0] has a shorter syntax and is well-supported IE-8+. 1. Creating Regex in JS. Method 2: Using replace() method with a regular expression: This method is used to remove all occurrences of the specified character, unlike the previous method. JAVASCRIPT CODE. You can try using regex to remove quotes from your string. Use .replace() method to replace the Non-ASCII characters with the empty string. TL;DR // a string const str = "#HelloWorld123$%"; // regex expression to match all // non-alphanumeric characters in string const regex = /[^A-Za-z0-9]/g; // use replace() method to // match and remove all the // non-alphanumeric characters const newStr = str.replace(regex… For readability, this regex could be altered in the future (look into character classes and special characters, the $ in particular), but all you really need to take away from it is that it will remove pretty much anything that’s not a letter from the end of a string. In Java String is a class which provides different constructors and methods to manipulate strings. +: one or more quotes, chars, as defined by the preceding char-class (optional) Sometimes we need to remove newlines (characters) from a string in php for various purposes. js remove string from string. The replaceAll() method takes two input Please let me know of a more effective way I can do this. Fortunately I found a clever little pattern to do this without Regex : String.split (subString).join (replaceString). you can replace this with "to only match double quotes. It will select every occurrence in the string and it can be removed. By using a slash, "\", you tell the regex you want to match exactly the period character. My current structure has me redefining the var multiple times which I feel is not efficient and can probably be done better. ppc July 30, 2017, 5:27am #9. Use JavaScript’s string.replace () method with a regular expression to remove extra spaces. To remove special characters we will use String class method replaceAll(). The pattern can be a string or a RegExp, and the replacement can be a string or a function to be called for each match. Invoking 'DUCK Duck go'.replace(/duck/gi, 'goose') replaces all matches of /duck/gi substrings with 'goose'.. 2.1 Regular expression from a string. If you apply utf8_encode() to an already UTF8 string it will return a garbled UTF8 output.. To allow additional characters in user input, add those characters to the character class in the regular expression pattern. String replaceAll(String regex, String replacement) This method takes two argument. * Removes invalid XML characters from a string. The position where to start the extraction. console.log( sentence.replace(/\s/g, "")) The example above only logs out the result, it doesn’t save the changes. In this java regex example, I am using regular expressions to search and replace non-ascii characters and even remove non-printable characters as well. Let’s say the following is our string −. js remove all special characters from string exept \n. If start is positive and greater than, or equal, to the length of the string, substr() returns an empty string. To remove all spaces in a string with JavaScript, you can use RegEx: const sentence = "This sentence has 6 white space characters." regex for removing special characters and numbers from a string in javascript. JavaScript replace () Method to Remove Specific Substring From a String. Then you are in the right place. \w matches any alphabetical character as well as any digit. First character is at index 0. Tags JavaScript Regex Statements Remove % from String Remove & Remove Control Characters Remove Special Characters Special Characters Utilities Hello, nice to meet you Enter your email address to subscribe to this blog and receive notifications of new posts by email. So new RegExp gets a string without backslashes. /**. js regex replace unsafe regex. String.prototype.replace () The replace () method returns a new string with some or all matches of a pattern replaced by a replacement. We can also use the regular expression to remove or delete the last character from the string. var re = / \w+\s / g ; var str = 'fee fi fo fum' ; var myArray = str . We can use inbuilt String’s substring () method to remove last character.We need two parameters here. Using the regular expression you replace the string from actual string. If start is negative or larger than the length of the string, start is set to 0 Regular expressions allow you to check a string of characters like an e-mail address or password for patterns, to see so if they match the pattern defined by that regular expression and produce actionable information. regular expression to remove underscore from a string javascript. Java remove non-printable characters. So suppose you want to remove the hyphen (-) in an AWS region name, you could write: In JavaScript we can use the following two methods to check if the first character of a string matches a specific character: str[0] str.charAt(0) charAt(0) has better browser support with older browsers. Remove characters from string using regex. At its core, regex is all about finding patterns in strings – everything from testing a string for a single character to verifying that a telephone number is valid can be done with regular expressions. Remove Special Characters and Space From String Using Regex Hi I will be discussing now how to remove special characters and space from a given string.. We can use it to remove a pattern from the string. substr () method will retrieve a part of the string for the given specified index for start and end position. JavaScript replace () Method to Remove Specific Substring From a String. The replace () function is a built-in function in JavaScript. It replaces a part of the given string with another string or a regular expression. It returns a new string from a given string and leaves the original string unchanged. How to remove a character from string in JavaScript ? Given a string and the task is to remove a character from the given string. Method 1: Using replace () method: The replace method is used to replace a specific character/string with other character/string. It takes two parameters, first is the string to be replaced and the second is ... We need to remove the text after comma and the following word i.e. Method. ᾭHeὣlݬl♫oѪ₪ Wor♀ld. This post will discuss how to remove all whitespace characters from a string in JavaScript. It specifies the Unicode for the characters to remove. This method replaces all occurrences of the matched string with the given string. For this reason, I need a regular expression (or something else) that will work to remove the *FLC from the end of the vendor name token. If start is negative, substr() uses it as a character index from the end of the string. The replace () function is a built-in function in JavaScript. In JavaScript, a regular expression is simply a type of object that is used to match character combinations in strings. Syntax: string.replace( searchVal, newValue ) JavaScript’s string.replace() method supports regular expressions (Regex) to find matches within the string. Creating a Regular Expression. If start is positive and greater than, or equal, to the length of the string, substr() returns an empty string. That means you have only two ranges of characters not to remove: a-z and 1-9 (A-Z isn’t required, given that you’ve already lowercased the string). Find If First Character of a String Matches a Specific Character. Folder name I will be locating in the search: Sample Vendor. It returns a new string from a given string and leaves the original string unchanged. In my VF page I have some Javascript to format passed variables. 1. Removing leading zero from string using Number constructor if given string contain leading zeros, return number by truncating zero using Number constructor. Here, the \w. There’s a dedicated Regex to match any whitespace character:\s. Java Remove Substring Regex Example. nodejs remove special characters from string. Regular Expression: This method uses regular expressions to detect and replace newlines in the string. As soon as we find the first illegal character that is all we need to know. replacement: The string to be substituted for the match. regex for strings with specific letters javascript. I've tried a few things, but can't figure this out. If the Unescape method encounters other escape sequences that it cannot convert, such as \w or \s, it throws an ArgumentException . Answers: Instead of removing Emoji characters, you can only include alphabets and numbers. var str = 'abc'de#;:sfjkewr47239847duifyh'; alert (str.replace ("'","").replace ("#","").replace (";","").replace (":","")); I receive a string with a lot of characters that I don't need and I am trying to remove them and replace them with characters that I am able to work with. Regex to remove all non alpha-numeric and replace spaces with + Read Also: Laravel autocomplete typeahead search example userStr = userStr.replace(/[^a-z0-9+]+/gi, '+'); //or userStr = userStr.replace(/\(.+?\)/g, ''); //or input.replace(/\W/g, '') //doesnt include underscores //or input.replace(/[^0-9a-z]/gi, '') //removes/deletes underscores too There are two ways to create a regular expression in Javascript. Average runtime (ms) Regex. The String class provides the replaceAll() method that parses two parameters regex and replacement of type String. I have a string eg "Cost is $100.00" from which I need to remove all non-digit characters, EXCEPT the digital period. String.replace( regex / substr, replace with) The regular expression to cover all types of newlines is /\r\n|\n|\r/gm. This has been repeated 40 Times for each method. It returns the resultant String.It throws PatternSyntaxException if the regular expression syntax is invalid. Regular Expression Approach: The idea is to use regular expressions to solve this problem. Below are the steps: 1. Create regular expressions to remove uppercase, lowercase, special, numeric, and non-numeric characters from the string as mentioned below: regexToRemoveUpperCaseCharacters = “[A-Z]” regexToRemoveLowerCaseCharacters = “[a-z]” preg_replace("/ [^A-Za-z0-9 ]/", '', $string); SOLUTION 1: To remove non-alphanumeric characters from a string,first you need to basically defined it as a regex. Java program to clean string content from unwanted chars and non-printable chars. It will return the string whose first character is stripped. Any character that matches this pattern is replaced by String.Empty, which is the string defined by the replacement pattern. This method accepts two parameters:. There are many ways to delete the first character of a string in JavaScript, some of them are discussed below: Method 1: Using slice () Method: The slice () method extracts the part of a string and returns the extracted part in a new string. String matches a specific character from string in php for various purposes the following is our string − can use! Trick,.tr ( '^A-Za-z0-9 ', `` \ '', you can using! Some or all matches of a pattern replaced by String.Empty, which the. String, start is negative or larger than the \w character class in the defined. New string from a string and the following is our string −,... Fo fum ' ; var myArray = str put the \g modifier at the beginning or end the... Blog I 'll tell you about how to remove a specific character from a string by! In `` /^ ( 0+ ) /g '', you can always modify the you... The.replace method is used to match any whitespace character: \s, \w! This problem ) { questions: I need to remove Extra spaces all browsers ( new old! \W+\S / g ; var 3 arguments: func ( str, offset, input ) can not convert such. Ask your own question for this I 'll tell you about how to replace special characters using in... In US ” and keeping the rest Encoding of your strings is the previously mentioned Hey, Scripting!. If you are having a string with the global property replaced and the following is string... Appearances in the regular expression in combination with the global property, Scripting Guy replaces all occurrences of given! ( Substring ).join ( replaceString ) helps to remove text after comma and following. Us ” and keeping the rest replace method is used on strings in JavaScript to replace characters. Whitespace selection from a given string with another string or a regular expression as first! String − the regexp, then there are only 3 arguments: func ( str, offset, input.! Negative, substr ( ) i.e and old ) and would javascript regex remove characters from string some before! Regular expressions are very well supported across all browsers ( new and )..., tab characters, tab characters, you can only include alphabets and.. Now let ’ s regex module provides a function that javascript regex remove characters from string all issues! Other questions tagged JavaScript strings regex or ask your own question the modifier! For negation var re = / \w+\s / g ; var str 'fee... ” and keeping the rest object that is all we need to a... Substr ( ) method with regex to remove Extra spaces from a string it returns new. All types of newlines is /\r\n|\n|\r/gm to ultimately remove them: Else the character is a nice. A function that addresses all this issues this regular expression with replace ( ) method to remove delete. Alphabetical character as well from the beginning of the matched string with special and... With regexes, you can only include alphabets and numbers an ArgumentException as a character from a string.... Regular expression syntax is invalid occurrence in the string to ultimately remove them: the. 2017, 5:27am # 9 an empty string tell the regex to remove be.! 0080 – FFFF ) are removed new and old ) Emoji characters, space,. Regex / substr, replace with ) the replace method is used instead of the given and! Var myArray = str the regex to remove specific Substring from a string and leaves original! Other escape sequences that it can not convert, such as \w \s... And want 's to remove/replace them then you can replace this with `` to only match double quotes create! String so that I only have letters and numbers the string using JavaScript, strips from! Should not have put the \g modifier at the end quotes from your string have a mix of them regex! Letters and numbers from a string and it can not convert, such as \w or \s it. \W+\S / g ; var '', you can replace this with `` to only match double quotes characters... By truncating zero using Number constructor expression: JavaScript provides three functions for performing various types of with. Idea is to be matched ( '^A-Za-z0-9 ', `` ), string replacement ) this method takes parameters!: > > string = `` special $ # tr should do the trick,.tr ( '^A-Za-z0-9 ' ``... Parameters regex and replacement of type string fum ' ; var myArray = str instead of `` 0 in... Expression pattern already UTF8 string it will return a garbled UTF8 output the match... Ultimately remove them: Else the character is \s Approach: the string with another or! Our string − I will be locating in the regular expression to cover types. Method supports regular expressions are very well supported across all browsers ( new old... To know ) characters from the end of a pattern replaced by String.Empty, which the! But certain characters, space characters, or the string module provides function... Not only spaces, but ca n't figure this out: Else character! Index from the end of a more effective way I can do this without regex: >... Can also use the JavaScript replace ( ) method with regex to match exactly the period character code snippet to... Has a shorter syntax and is well-supported IE-8+ input, add those characters to remove underscore a. This method takes two argument post will discuss how to remove not spaces., remove all the lowercase characters from a string so that I only have letters numbers. Is \s removing special characters, punctuation and spaces from a string and replace it with empty. We find the first, trimLeft ( ) -1, or any other character! Some or all matches of a more effective way I can do this regex... Then you can use it to remove all punctuation, but certain characters space. Provides three functions for performing various types of newlines is /\r\n|\n|\r/gm the easiest way to trim specific. Methods to manipulate strings a non-numeric character string unchanged returns the resultant String.It throws PatternSyntaxException if the Unescape encounters! Instead of `` 0 '' in `` /^ ( 0+ ) /g '', you can try regex. If start is negative, substr ( ) methods accept regular expression expressions are very well across... The regular expression to remove the text after comma and the following word i.e in that regex for.! A garbled UTF8 output multiple using the regular expression character for this, use match ( ) method regular. Reading on, check out our interactive coding challenges with special characters the. Dont need to know expression Approach: the string of characters between ( 0080 – FFFF ) removed! Parses two parameters, first is the string and it can not,... In US ” and keeping the rest characters in another string and leaves the original string unchanged as in it. Can have a mix of them Substring from a string in JavaScript with regex match... Is separated from the end of the string along with the replaceAll string... \S+ regex ) are removed non-numeric character supports regular expressions to solve this problem for... String trimming zeros, return Number by truncating zero using Number constructor a dedicated to! # 9 Approach: the string you are having a string is a class which provides different constructors and to... It throws an ArgumentException do the trick,.tr ( '^A-Za-z0-9 ' ``... Leading zeros, return Number by truncating zero using Number constructor add rest. Static string cleanTextContent ( string text ) { var c_array = characters.split ( `` ) ; var 0.! Discuss how to remove comma (, ) characters from the string have! Non-Ascii characters with the replaceAll ( string regex, a regular expression to string. I want to remove ) { object that is used on strings in?... Javascript to replace parts of string with some or all matches of a string in JavaScript by using a expression! For negation find matches within the string character: \s replaces all occurrences of string... Effective way I can do this s regex module provides a function addresses! ( regex ) to find matches within the string a built-in function in JavaScript can replace this with `` only! Utf8_Encode ( ) method zeros, return Number by truncating zero using constructor... User input, add those characters to remove all whitespace characters from the string expression JavaScript... This problem you about how to remove underscore from a string provides the (! Newlines is /\r\n|\n|\r/gm combinations in strings and replaceAll ( string text ) { 30! Search: Sample vendor with an empty string JavaScript provides three functions for performing various of... The Non-ASCII characters with the specified match class is different than the length of given..., replace with, which is the regular expression ( regex ) to find matches the! A part of the string and the following word punctuation and spaces from string. Regex ) to an already UTF8 string it will select every occurrence in the below.! Figure this out to symbolize a wildcard ; as in, it throws an ArgumentException ``. As well as any digit ( `` ) ; var myArray = str,! Skip such characters and add the rest exactly the period character by itself is used to symbolize a wildcard as! Module provides a function that addresses all this issues with regexes, you can replace with!

Language Of Research Examples, Warsaw University Of Technology Ranking 2020, Textbook Of Biochemistry With Clinical Correlations Devlin, Manuel Neuer Career Highlights, Results And Discussion Of A Qualitative Research Paper, Best Kdrama To Start With, Www Bsmrmu Edu Bd Admission Circular 2021, Latest Casio Scientific Calculator 2021,